@@ -18,17 +18,18 @@ jobs:
18
18
fail-fast : false
19
19
matrix :
20
20
env : [
21
- {name: "Release", build_type: Release, arch: x86_64, upload: true, cmake: ""},
22
- {name: "Debug", build_type: Debug, arch: x86_64, upload: true, cmake: ""},
23
- {name: "Debug D3D9 + Sokol + Asserts", build_type: Debug, arch: x86_64, upload: false, cmake: "-DOPTION_D3D9=ON -DOPTION_SOKOL=ON -DOPTION_DEBUG_ASSERT=ON"},
24
- {name: "Release D3D9 + Sokol", build_type: Release, arch: x86_64, upload: false, cmake: "-DOPTION_D3D9=ON -DOPTION_SOKOL=ON"},
25
- {name: "Debug D3D9", build_type: Debug, arch: x86_64, upload: false, cmake: "-DOPTION_D3D9=ON -DOPTION_SOKOL=OFF"},
26
- {name: "Debug Sokol", build_type: Debug, arch: x86_64, upload: false, cmake: "-DOPTION_D3D9=OFF -DOPTION_SOKOL=ON"},
27
- {name: "Scripts Check", build_type: Release, arch: x86_64, upload: false, cmake: "-DOPTION_CHECK_SCRIPTS=ON "},
21
+ {name: "Release", build_type: Release, arch: x86_64, os: ubuntu-latest, upload: true, cmake: ""},
22
+ {name: "Release", build_type: Release, arch: arm64, os: ubuntu-24.04-arm, upload: true, cmake: ""},
23
+ {name: "Debug", build_type: Debug, arch: x86_64, os: ubuntu-latest, upload: true, cmake: ""},
24
+ {name: "Debug D3D9 + Sokol + Asserts", build_type: Debug, arch: x86_64, os: ubuntu-latest, upload: false, cmake: "-DOPTION_D3D9=ON -DOPTION_SOKOL=ON -DOPTION_DEBUG_ASSERT=ON"},
25
+ {name: "Release D3D9 + Sokol", build_type: Release, arch: x86_64, os: ubuntu-latest, upload: false, cmake: "-DOPTION_D3D9=ON -DOPTION_SOKOL=ON"},
26
+ {name: "Debug D3D9", build_type: Debug, arch: x86_64, os: ubuntu-latest, upload: false, cmake: "-DOPTION_D3D9=ON -DOPTION_SOKOL=OFF"},
27
+ {name: "Debug Sokol", build_type: Debug, arch: x86_64, os: ubuntu-latest, upload: false, cmake: "-DOPTION_D3D9=OFF -DOPTION_SOKOL=ON"},
28
+ {name: "Scripts Check", build_type: Release, arch: x86_64, os: ubuntu-latest, upload: false, cmake: "-DOPTION_CHECK_SCRIPTS=ON "},
28
29
]
29
30
name : ${{matrix.env.name}} ${{matrix.env.arch}}
30
31
if : github.event.pull_request.draft != true
31
- runs-on : ubuntu-latest
32
+ runs-on : ${{matrix.env.os}}
32
33
container :
33
34
image : " debian:buster"
34
35
steps :
0 commit comments