From: <sv...@op...> - 2024-06-16 08:52:30
|
Author: manx Date: Sun Jun 16 10:52:23 2024 New Revision: 21035 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=21035 Log: Merged revision(s) 20652, 21034 from trunk/OpenMPT: [Imp] build: CI: GitHub: macOS: Add XCode 15.4-beta. ........ [Reg] build: CI: GitHub: macOS: Remove all but backwards-compatible XCode 15.3 builders as 15.4 is the latest stable. ........ Modified: branches/OpenMPT-1.31/ (props changed) branches/OpenMPT-1.31/.github/workflows/macOS-Makefile.yml Modified: branches/OpenMPT-1.31/.github/workflows/macOS-Makefile.yml ============================================================================== --- branches/OpenMPT-1.31/.github/workflows/macOS-Makefile.yml Sun Jun 16 10:51:31 2024 (r21034) +++ branches/OpenMPT-1.31/.github/workflows/macOS-Makefile.yml Sun Jun 16 10:52:23 2024 (r21035) @@ -11,22 +11,24 @@ fail-fast: false matrix: include: - - { host: macos-14, compiler: '15.3', arch: '' , target: '' , deps: sys , check: true } - - { host: macos-14, compiler: '15.3', arch: arm64 , target: '' , deps: local, check: true } - - { host: macos-14, compiler: '15.3', arch: x64_64, target: '' , deps: local, check: true } - - { host: macos-14, compiler: '15.3', arch: arm64 , target: '' , deps: small, check: true } - - { host: macos-14, compiler: '15.3', arch: x64_64, target: '' , deps: small, check: true } - - { host: macos-14, compiler: '15.3', arch: arm64 , target: '14' , deps: local, check: true } - - { host: macos-14, compiler: '15.3', arch: x64_64, target: '14' , deps: local, check: true } - - { host: macos-14, compiler: '15.3', arch: arm64 , target: '13' , deps: local, check: true } - - { host: macos-14, compiler: '15.3', arch: x64_64, target: '13' , deps: local, check: true } - - { host: macos-14, compiler: '15.3', arch: arm64 , target: '12' , deps: local, check: true } - - { host: macos-14, compiler: '15.3', arch: x64_64, target: '12' , deps: local, check: true } - - { host: macos-14, compiler: '15.3', arch: arm64 , target: '11' , deps: local, check: true } - - { host: macos-14, compiler: '15.3', arch: x64_64, target: '11' , deps: local, check: true } - - { host: macos-14, compiler: '15.3', arch: x64_64, target: '10.15', deps: local, check: true } - - { host: macos-14, compiler: '15.3', arch: x64_64, target: '10.14', deps: local, check: true } - - { host: macos-14, compiler: '15.3', arch: i386 , target: '10.14', deps: local, check: false } + - { host: macos-14, compiler: '15.4', arch: '' , target: '' , deps: sys , check: true } + - { host: macos-14, compiler: '15.4', arch: arm64 , target: '' , deps: local, check: true } + - { host: macos-14, compiler: '15.4', arch: x64_64, target: '' , deps: local, check: true } + - { host: macos-14, compiler: '15.4', arch: arm64 , target: '' , deps: small, check: true } + - { host: macos-14, compiler: '15.4', arch: x64_64, target: '' , deps: small, check: true } + - { host: macos-14, compiler: '15.4', arch: arm64 , target: '14' , deps: local, check: true } + - { host: macos-14, compiler: '15.4', arch: x64_64, target: '14' , deps: local, check: true } + - { host: macos-14, compiler: '15.4', arch: arm64 , target: '13' , deps: local, check: true } + - { host: macos-14, compiler: '15.4', arch: x64_64, target: '13' , deps: local, check: true } + - { host: macos-14, compiler: '15.4', arch: arm64 , target: '12' , deps: local, check: true } + - { host: macos-14, compiler: '15.4', arch: x64_64, target: '12' , deps: local, check: true } + - { host: macos-14, compiler: '15.4', arch: arm64 , target: '11' , deps: local, check: true } + - { host: macos-14, compiler: '15.4', arch: x64_64, target: '11' , deps: local, check: true } + - { host: macos-14, compiler: '15.4', arch: x64_64, target: '10.15', deps: local, check: true } + - { host: macos-14, compiler: '15.4', arch: x64_64, target: '10.14', deps: local, check: true } + - { host: macos-14, compiler: '15.4', arch: i386 , target: '10.14', deps: local, check: false } + - { host: macos-14, compiler: '15.4', arch: x64_64, target: '10.13', deps: local, check: true } + - { host: macos-14, compiler: '15.4', arch: i386 , target: '10.13', deps: local, check: false } - { host: macos-14, compiler: '15.3', arch: x64_64, target: '10.13', deps: local, check: true } - { host: macos-14, compiler: '15.3', arch: i386 , target: '10.13', deps: local, check: false } - { host: macos-13, compiler: '15.2', arch: x64_64, target: '10.13', deps: local, check: true } |