mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2024-11-23 19:25:35 +08:00
31 lines
642 B
YAML
31 lines
642 B
YAML
name: Emu PR
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ "dev" ]
|
|
paths-ignore:
|
|
- '**/*.md'
|
|
- 'dev.notes/**'
|
|
- 'post_build/**'
|
|
- 'z_original_repo_files/**'
|
|
- 'sdk/*.txt'
|
|
- 'LICENSE'
|
|
# tools
|
|
- 'tools/generate_emu_config/**'
|
|
- 'tools/migrate_gse/**'
|
|
- 'tools/steamclient_loader/linux/**' # these are just scripts, not built
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
emu-win-all:
|
|
name: win
|
|
if: ${{ !cancelled() }}
|
|
uses: ./.github/workflows/emu-build-all-win.yml
|
|
|
|
emu-linux-all:
|
|
name: linux
|
|
if: ${{ !cancelled() }}
|
|
uses: ./.github/workflows/emu-build-all-linux.yml
|