Skip to content

Commit

Permalink
m1 runner
Browse files Browse the repository at this point in the history
  • Loading branch information
wtdcode committed Feb 11, 2024
1 parent 5e901ba commit 98777f2
Showing 1 changed file with 28 additions and 4 deletions.
32 changes: 28 additions & 4 deletions .github/workflows/build-uc2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -258,25 +258,49 @@ jobs:
matrix:
config:
- {
os: macos-latest,
os: macos-12, # x64
arch: x64,
python-arch: x64,
python-ver: '3.8',
name: 'macos-x64 cmake shared',
shared: 'yes',
artifact: 'macos-cmake-shared-x64.7z',
artifact: 'macos-x64-cmake-shared-x64.7z',
build_type: 'Debug',
archiver: '7za a',
generators: 'Ninja'
}
- {
os: macos-latest,
os: macos-12,
arch: x64,
python-arch: x64,
python-ver: '3.8',
name: 'macos-x64 cmake static',
shared: 'no',
artifact: 'macos-cmake-static-x64.7z',
artifact: 'macos-x64-cmake-static-x64.7z',
build_type: 'Debug',
archiver: '7za a',
generators: 'Ninja'
}
- {
os: macos-14, # arm64
arch: arm64,
python-arch: arm64,
python-ver: '3.8',
name: 'macos-x64 cmake shared',
shared: 'yes',
artifact: 'macos-arm64-cmake-shared-x64.7z',
build_type: 'Debug',
archiver: '7za a',
generators: 'Ninja'
}
- {
os: macos-14,
arch: arm64,
python-arch: arm64,
python-ver: '3.8',
name: 'macos-arm64 cmake static',
shared: 'no',
artifact: 'macos-arm64-cmake-static-x64.7z',
build_type: 'Debug',
archiver: '7za a',
generators: 'Ninja'
Expand Down

0 comments on commit 98777f2

Please sign in to comment.