mirror of
https://github.com/audacity/conan-recipes.git
synced 2025-12-10 03:56:47 -06:00
Bump macos runner version
This commit is contained in:
parent
71b2f78fd8
commit
c37b273243
24
.github/workflows/build_all_deps.yml
vendored
24
.github/workflows/build_all_deps.yml
vendored
@ -193,16 +193,16 @@ jobs:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
config:
|
||||
- name: XCode 14.2
|
||||
os: macos-13
|
||||
compiler: 14
|
||||
xcode_version: 14.2
|
||||
- name: XCode 16.2
|
||||
os: macos-14
|
||||
compiler: 16
|
||||
xcode_version: 16.2
|
||||
release_args: --enable-debug-processor sentry --skip-debug-data-upload
|
||||
metadata: "platform: darwin"
|
||||
- name: XCode 15.0.1
|
||||
os: macos-13
|
||||
- name: XCode 15.4
|
||||
os: macos-14
|
||||
compiler: 15
|
||||
xcode_version: 15.0.1
|
||||
xcode_version: 15.4
|
||||
release_args:
|
||||
metadata: |
|
||||
upload_build_tools: true
|
||||
@ -238,10 +238,10 @@ jobs:
|
||||
shell: bash
|
||||
run: |
|
||||
python3 utils/conan-utils.py export-recipes --build-order ${{ github.event.inputs.build_order }}
|
||||
python3 utils/conan-utils.py validate-recipe --remote conan-utils-audacity-binaries-conan2 --profile-host host/macos/apple_clang${{ matrix.config.compiler }}_x86_64_rel --profile-build build/macos/apple_clang${{ matrix.config.compiler }}_x86_64 --build-order ${{ github.event.inputs.build_order }} --recipe-config ${{ github.event.inputs.build_config }} --recipe audacity/conan/conanfile.py ${{ matrix.config.release_args }}
|
||||
python3 utils/conan-utils.py validate-recipe --remote conan-utils-audacity-binaries-conan2 --profile-host host/macos/apple_clang${{ matrix.config.compiler }}_arm64_rel --profile-build build/macos/apple_clang${{ matrix.config.compiler }}_x86_64 --build-order ${{ github.event.inputs.build_order }} --recipe-config ${{ github.event.inputs.build_config }} --recipe audacity/conan/conanfile.py ${{ matrix.config.release_args }}
|
||||
python3 utils/conan-utils.py validate-recipe --remote conan-utils-audacity-binaries-conan2 --profile-host host/macos/apple_clang${{ matrix.config.compiler }}_x86_64_deb --profile-build build/macos/apple_clang${{ matrix.config.compiler }}_x86_64 --build-order ${{ github.event.inputs.build_order }} --recipe-config ${{ github.event.inputs.build_config }} --recipe audacity/conan/conanfile.py
|
||||
python3 utils/conan-utils.py validate-recipe --remote conan-utils-audacity-binaries-conan2 --profile-host host/macos/apple_clang${{ matrix.config.compiler }}_arm64_deb --profile-build build/macos/apple_clang${{ matrix.config.compiler }}_x86_64 --build-order ${{ github.event.inputs.build_order }} --recipe-config ${{ github.event.inputs.build_config }} --recipe audacity/conan/conanfile.py
|
||||
python3 utils/conan-utils.py validate-recipe --remote conan-utils-audacity-binaries-conan2 --profile-host host/macos/apple_clang${{ matrix.config.compiler }}_x86_64_rel --profile-build build/macos/apple_clang${{ matrix.config.compiler }}_arm64 --build-order ${{ github.event.inputs.build_order }} --recipe-config ${{ github.event.inputs.build_config }} --recipe audacity/conan/conanfile.py ${{ matrix.config.release_args }}
|
||||
python3 utils/conan-utils.py validate-recipe --remote conan-utils-audacity-binaries-conan2 --profile-host host/macos/apple_clang${{ matrix.config.compiler }}_arm64_rel --profile-build build/macos/apple_clang${{ matrix.config.compiler }}_arm64 --build-order ${{ github.event.inputs.build_order }} --recipe-config ${{ github.event.inputs.build_config }} --recipe audacity/conan/conanfile.py ${{ matrix.config.release_args }}
|
||||
python3 utils/conan-utils.py validate-recipe --remote conan-utils-audacity-binaries-conan2 --profile-host host/macos/apple_clang${{ matrix.config.compiler }}_x86_64_deb --profile-build build/macos/apple_clang${{ matrix.config.compiler }}_arm64 --build-order ${{ github.event.inputs.build_order }} --recipe-config ${{ github.event.inputs.build_config }} --recipe audacity/conan/conanfile.py
|
||||
python3 utils/conan-utils.py validate-recipe --remote conan-utils-audacity-binaries-conan2 --profile-host host/macos/apple_clang${{ matrix.config.compiler }}_arm64_deb --profile-build build/macos/apple_clang${{ matrix.config.compiler }}_arm64 --build-order ${{ github.event.inputs.build_order }} --recipe-config ${{ github.event.inputs.build_config }} --recipe audacity/conan/conanfile.py
|
||||
- name: Upload to Cache
|
||||
shell: bash
|
||||
run: |
|
||||
@ -283,7 +283,7 @@ jobs:
|
||||
- name: Windows
|
||||
os: windows-2022
|
||||
- name: MacOS
|
||||
os: macos-13
|
||||
os: macos-14
|
||||
needs: [update_conan_remotes]
|
||||
steps:
|
||||
- name: Checkout Repo
|
||||
|
||||
2
.gitignore
vendored
2
.gitignore
vendored
@ -24,3 +24,5 @@ autom4te.cache/
|
||||
|
||||
recipes/qt-tools/all/src/
|
||||
recipes/qt/6.x.x/src/
|
||||
|
||||
*.log
|
||||
|
||||
9
config/profiles/build/macos/apple_clang16_arm64.profile
Normal file
9
config/profiles/build/macos/apple_clang16_arm64.profile
Normal file
@ -0,0 +1,9 @@
|
||||
[settings]
|
||||
os = Macos
|
||||
os.version=11.0
|
||||
arch = armv8
|
||||
compiler = apple-clang
|
||||
compiler.version = 16
|
||||
compiler.libcxx = libc++
|
||||
compiler.cppstd = 17
|
||||
build_type = Release
|
||||
11
config/profiles/build/macos/apple_clang16_x86_64.profile
Normal file
11
config/profiles/build/macos/apple_clang16_x86_64.profile
Normal file
@ -0,0 +1,11 @@
|
||||
[settings]
|
||||
os = Macos
|
||||
os.version=11.0
|
||||
arch = x86_64
|
||||
compiler = apple-clang
|
||||
compiler.version = 16
|
||||
compiler.libcxx = libc++
|
||||
compiler.cppstd = 17
|
||||
build_type = Release
|
||||
[options]
|
||||
catch2/*:no_std_unchaught_exceptions=True
|
||||
11
config/profiles/host/macos/apple_clang16_arm64_deb.profile
Normal file
11
config/profiles/host/macos/apple_clang16_arm64_deb.profile
Normal file
@ -0,0 +1,11 @@
|
||||
[settings]
|
||||
os = Macos
|
||||
os.version=10.13
|
||||
arch = armv8
|
||||
compiler = apple-clang
|
||||
compiler.version = 16
|
||||
compiler.libcxx = libc++
|
||||
compiler.cppstd = 17
|
||||
build_type = Debug
|
||||
[options]
|
||||
*:shared=True
|
||||
11
config/profiles/host/macos/apple_clang16_arm64_rel.profile
Normal file
11
config/profiles/host/macos/apple_clang16_arm64_rel.profile
Normal file
@ -0,0 +1,11 @@
|
||||
[settings]
|
||||
os = Macos
|
||||
os.version=10.13
|
||||
arch = armv8
|
||||
compiler = apple-clang
|
||||
compiler.version = 16
|
||||
compiler.libcxx = libc++
|
||||
compiler.cppstd = 17
|
||||
build_type = RelWithDebInfo
|
||||
[options]
|
||||
*:shared=True
|
||||
13
config/profiles/host/macos/apple_clang16_x86_64_deb.profile
Normal file
13
config/profiles/host/macos/apple_clang16_x86_64_deb.profile
Normal file
@ -0,0 +1,13 @@
|
||||
[settings]
|
||||
os = Macos
|
||||
os.version=10.13
|
||||
arch = x86_64
|
||||
compiler = apple-clang
|
||||
compiler.version = 16
|
||||
compiler.libcxx = libc++
|
||||
compiler.cppstd = 17
|
||||
build_type = Debug
|
||||
[options]
|
||||
*:shared=True
|
||||
catch2/*:no_std_unchaught_exceptions=True
|
||||
|
||||
12
config/profiles/host/macos/apple_clang16_x86_64_rel.profile
Normal file
12
config/profiles/host/macos/apple_clang16_x86_64_rel.profile
Normal file
@ -0,0 +1,12 @@
|
||||
[settings]
|
||||
os = Macos
|
||||
os.version=10.13
|
||||
arch = x86_64
|
||||
compiler = apple-clang
|
||||
compiler.version = 16
|
||||
compiler.libcxx = libc++
|
||||
compiler.cppstd = 17
|
||||
build_type = RelWithDebInfo
|
||||
[options]
|
||||
*:shared=True
|
||||
catch2/*:no_std_unchaught_exceptions=True
|
||||
Loading…
x
Reference in New Issue
Block a user