File tree Expand file tree Collapse file tree 1 file changed +7
-10
lines changed
Expand file tree Collapse file tree 1 file changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -39,20 +39,17 @@ jobs:
3939 run :
4040 shell : bash
4141
42- runs-on : ${{
43- (matrix.os == 'ubuntu.22.04') && 'ubuntu-22.04' ||
44- (matrix.os == 'ubuntu.24.04') && 'ubuntu-24.04' ||
45- (matrix.os == 'win' && matrix.arch == 'x64') && 'windows-2022' ||
46- (matrix.os == 'osx' && matrix.arch == 'arm64') && 'macos-14'
47- }}
42+ runs-on : matrix.runs-on
4843
4944 strategy :
5045 matrix :
5146 include :
52- - { os: ubuntu.22.04, arch: x64 }
53- - { os: ubuntu.24.04, arch: x64 }
54- - { os: win, arch: x64 }
55- - { os: osx, arch: arm64 }
47+ - { os: ubuntu.22.04, arch: x64, runs-on: ubuntu-22.04 }
48+ - { os: ubuntu.24.04, arch: x64, runs-on: ubuntu-24.04 }
49+ - { os: ubuntu.22.04, arch: arm64, runs-on: ubuntu-22.04-arm }
50+ - { os: ubuntu.24.04, arch: arm64, runs-on: ubuntu-24.04-arm }
51+ - { os: win, arch: x64, runs-on: windows-2022 }
52+ - { os: osx, arch: arm64, runs-on: macos-14 }
5653
5754 steps :
5855 - name : Install Dependencies
You can’t perform that action at this time.
0 commit comments