Skip to content

Commit

Permalink
chore(ci): update to xcode 15 with commit push
Browse files Browse the repository at this point in the history
  • Loading branch information
nfrechette authored Jul 9, 2024
1 parent a858ee6 commit b0f5b49
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/build_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,32 +80,32 @@ jobs:
with:
args: 'python3 make.py -ci -compiler ${{ matrix.compiler }} -config Release -cpu x64 -avx -regression_test'

osx-12:
runs-on: macos-12
osx-14:
runs-on: macos-14
strategy:
matrix:
compiler: [xcode14]
compiler: [xcode15]
steps:
- name: Git checkout
uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Setup ${{ matrix.compiler }} compiler
run: ./tools/setup_osx_compiler.sh ${{ matrix.compiler }}
- name: Building (release-x64)
run: python3 make.py -ci -compiler osx -config Release -cpu x64 -build
- name: Running unit tests (release-x64)
run: python3 make.py -ci -compiler osx -config Release -cpu x64 -unit_test
- name: Running regression tests (release-x64)
run: python3 make.py -ci -compiler osx -config Release -cpu x64 -regression_test
- name: Building (release-arm64)
run: python3 make.py -ci -compiler osx -config Release -build
- name: Running unit tests (release-arm64)
run: python3 make.py -ci -compiler osx -config Release -unit_test
- name: Running regression tests (release-arm64)
run: python3 make.py -ci -compiler osx -config Release -regression_test
- name: Clean
run: python3 make.py -ci -clean_only
- name: Building (release-x64 nosimd)
run: python3 make.py -ci -compiler osx -config Release -cpu x64 -nosimd -build
- name: Running unit tests (release-x64 nosimd)
run: python3 make.py -ci -compiler osx -config Release -cpu x64 -nosimd -unit_test
- name: Running regression tests (release-x64 nosimd)
run: python3 make.py -ci -compiler osx -config Release -cpu x64 -nosimd -regression_test
- name: Building (release-arm64 nosimd)
run: python3 make.py -ci -compiler osx -config Release -nosimd -build
- name: Running unit tests (release-arm64 nosimd)
run: python3 make.py -ci -compiler osx -config Release -nosimd -unit_test
- name: Running regression tests (release-arm64 nosimd)
run: python3 make.py -ci -compiler osx -config Release -nosimd -regression_test
- name: Clean
run: python3 make.py -ci -clean_only
- name: Building for iOS (release-arm64)
Expand Down

0 comments on commit b0f5b49

Please sign in to comment.