Merge pull request #15198 from Bo98/xcode-14.3

Xcode 14.3 updates
This commit is contained in:
Mike McQuaid 2023-04-11 10:34:30 +01:00 committed by GitHub
commit df14a969d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 20 additions and 18 deletions

View File

@ -17,13 +17,14 @@ jobs:
tests: tests:
strategy: strategy:
matrix: matrix:
runner: include:
- "13-arm64-${{github.run_id}}-${{github.run_attempt}}" - runner: "13-arm64-${{github.run_id}}-${{github.run_attempt}}"
- "12-arm64" - runner: "12-arm64-${{github.run_id}}-${{github.run_attempt}}"
- "12-${{github.run_id}}-${{github.run_attempt}}" - runner: "12-${{github.run_id}}-${{github.run_attempt}}"
- "11-arm64" - runner: "11-arm64"
- "11-${{github.run_id}}-${{github.run_attempt}}" cleanup: true
- "10.15-${{github.run_id}}-${{github.run_attempt}}" - runner: "11-${{github.run_id}}-${{github.run_attempt}}"
- runner: "10.15-${{github.run_id}}-${{github.run_attempt}}"
fail-fast: false fail-fast: false
runs-on: ${{ matrix.runner }} runs-on: ${{ matrix.runner }}
env: env:
@ -37,9 +38,9 @@ jobs:
uses: Homebrew/actions/setup-homebrew@master uses: Homebrew/actions/setup-homebrew@master
- run: brew test-bot --only-cleanup-before - run: brew test-bot --only-cleanup-before
if: !contains(matrix.runner, github.run_id) if: matrix.cleanup
- run: brew doctor - run: brew doctor
- run: brew test-bot --only-cleanup-after - run: brew test-bot --only-cleanup-after
if: always() && !contains(matrix.runner, github.run_id) if: always() && matrix.cleanup

View File

@ -5,7 +5,7 @@ libdir=${exec_prefix}/lib
includedir=${prefix}/include includedir=${prefix}/include
Name: expat Name: expat
Version: 2.4.8 Version: 2.5.0
Description: expat XML parser Description: expat XML parser
URL: https://libexpat.github.io/ URL: https://libexpat.github.io/
Libs: -L${libdir} -lexpat Libs: -L${libdir} -lexpat

View File

@ -36,7 +36,7 @@ supported_features="alt-svc AsynchDNS GSS-API HSTS HTTP2 HTTPS-proxy IPv6 Kerber
Name: libcurl Name: libcurl
URL: https://curl.se/ URL: https://curl.se/
Description: Library to transfer files with ftp, http, etc. Description: Library to transfer files with ftp, http, etc.
Version: 7.84.0 Version: 7.87.0
Libs: -L${libdir} -lcurl Libs: -L${libdir} -lcurl
Libs.private: -lldap -lz Libs.private: -lldap -lz
Cflags: Cflags:

View File

@ -6,7 +6,7 @@ includedir=${prefix}/include
Name: SQLite Name: SQLite
Description: SQL database engine Description: SQL database engine
Version: 3.39.4 Version: 3.39.5
Libs: -L${libdir} -lsqlite3 Libs: -L${libdir} -lsqlite3
Libs.private: Libs.private:
Cflags: Cflags:

View File

@ -21,10 +21,10 @@ module OS
# This may be a beta version for a beta macOS. # This may be a beta version for a beta macOS.
sig { params(macos: MacOS::Version).returns(String) } sig { params(macos: MacOS::Version).returns(String) }
def latest_version(macos: MacOS.version) def latest_version(macos: MacOS.version)
latest_stable = "13.4" latest_stable = "14.3"
case macos case macos
when "13" then "14.1" when "13" then latest_stable
when "12" then latest_stable when "12" then "14.2"
when "11" then "13.2.1" when "11" then "13.2.1"
when "10.15" then "12.4" when "10.15" then "12.4"
when "10.14" then "11.3.1" when "10.14" then "11.3.1"
@ -246,7 +246,8 @@ module OS
when "12.0.5" then "12.5.1" when "12.0.5" then "12.5.1"
when "13.0.0" then "13.2.1" when "13.0.0" then "13.2.1"
when "13.1.6" then "13.4.1" when "13.1.6" then "13.4.1"
else "14.1" when "14.0.0" then "14.2"
else "14.3"
end end
end end
@ -344,8 +345,8 @@ module OS
sig { returns(String) } sig { returns(String) }
def latest_clang_version def latest_clang_version
case MacOS.version case MacOS.version
when "13" then "1400.0.29.202" when "13" then "1403.0.22.14.2"
when "12" then "1316.0.21.2.5" when "12" then "1400.0.29.202"
when "11" then "1300.0.29.30" when "11" then "1300.0.29.30"
when "10.15" then "1200.0.32.29" when "10.15" then "1200.0.32.29"
when "10.14" then "1100.0.33.17" when "10.14" then "1100.0.33.17"