2024-08-25 18:49:34 +08:00
|
|
|
name: "Emu PR"
|
2024-05-11 09:54:56 +08:00
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2024-08-25 18:49:34 +08:00
|
|
|
branches: ["dev"]
|
2024-05-11 09:54:56 +08:00
|
|
|
paths-ignore:
|
2024-08-25 18:49:34 +08:00
|
|
|
- "**/*.md"
|
|
|
|
- "dev.notes/**"
|
|
|
|
- "post_build/**"
|
|
|
|
- "z_original_repo_files/**"
|
|
|
|
- "sdk/*.txt"
|
|
|
|
- "LICENSE"
|
2024-05-11 09:54:56 +08:00
|
|
|
# tools
|
2024-08-25 18:49:34 +08:00
|
|
|
- "tools/generate_emu_config/**"
|
|
|
|
- "tools/migrate_gse/**"
|
|
|
|
- "tools/steamclient_loader/linux/**" # these are just scripts, not built
|
2024-05-11 09:54:56 +08:00
|
|
|
|
|
|
|
permissions:
|
2024-08-25 18:49:34 +08:00
|
|
|
contents: "write"
|
2024-05-11 09:54:56 +08:00
|
|
|
|
|
|
|
jobs:
|
2024-05-11 18:13:59 +08:00
|
|
|
emu-win-all:
|
2024-08-25 18:49:34 +08:00
|
|
|
name: "win"
|
2024-05-11 09:54:56 +08:00
|
|
|
if: ${{ !cancelled() }}
|
2024-08-25 18:49:34 +08:00
|
|
|
uses: "./.github/workflows/emu-build-all-win.yml"
|
2024-05-11 20:18:05 +08:00
|
|
|
|
|
|
|
emu-linux-all:
|
2024-08-25 18:49:34 +08:00
|
|
|
name: "linux"
|
2024-05-11 20:18:05 +08:00
|
|
|
if: ${{ !cancelled() }}
|
2024-08-25 18:49:34 +08:00
|
|
|
uses: "./.github/workflows/emu-build-all-linux.yml"
|