2024-05-20 09:05:53 +08:00
|
|
|
name: Emu PR
|
2024-05-11 09:54:56 +08:00
|
|
|
|
|
|
|
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/**'
|
2024-05-11 20:18:05 +08:00
|
|
|
- 'tools/steamclient_loader/linux/**' # these are just scripts, not built
|
2024-05-11 09:54:56 +08:00
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
|
|
|
|
jobs:
|
2024-05-11 18:13:59 +08:00
|
|
|
emu-win-all:
|
2024-05-20 09:05:53 +08:00
|
|
|
name: win
|
2024-05-11 09:54:56 +08:00
|
|
|
if: ${{ !cancelled() }}
|
2024-05-11 20:18:05 +08:00
|
|
|
uses: ./.github/workflows/emu-build-all-win.yml
|
|
|
|
|
|
|
|
emu-linux-all:
|
2024-05-20 09:05:53 +08:00
|
|
|
name: linux
|
2024-05-11 20:18:05 +08:00
|
|
|
if: ${{ !cancelled() }}
|
|
|
|
uses: ./.github/workflows/emu-build-all-linux.yml
|