From: <sv...@op...> - 2024-08-12 09:55:27
|
Author: manx Date: Mon Aug 12 11:55:14 2024 New Revision: 21381 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=21381 Log: [Imp] build: CI: GitHub: macOS: Add builders targeting macOS 10.9 with XCode 13.2 on macOS 12. Modified: trunk/OpenMPT/.github/workflows/macOS-Autotools.yml trunk/OpenMPT/.github/workflows/macOS-Makefile.yml Modified: trunk/OpenMPT/.github/workflows/macOS-Autotools.yml ============================================================================== --- trunk/OpenMPT/.github/workflows/macOS-Autotools.yml Sun Aug 11 19:51:21 2024 (r21380) +++ trunk/OpenMPT/.github/workflows/macOS-Autotools.yml Mon Aug 12 11:55:14 2024 (r21381) @@ -17,6 +17,7 @@ - { host: macos-14, compiler: '15.3' } - { host: macos-13, compiler: '15.2' } - { host: macos-12, compiler: '14.2' } + - { host: macos-12, compiler: '13.2' } concurrency: group: ${{github.ref}}-${{github.workflow}}-${{matrix.host}}-${{matrix.compiler}}-autotools cancel-in-progress: true Modified: trunk/OpenMPT/.github/workflows/macOS-Makefile.yml ============================================================================== --- trunk/OpenMPT/.github/workflows/macOS-Makefile.yml Sun Aug 11 19:51:21 2024 (r21380) +++ trunk/OpenMPT/.github/workflows/macOS-Makefile.yml Mon Aug 12 11:55:14 2024 (r21381) @@ -57,6 +57,10 @@ - { host: macos-12, compiler: '14.2', arch: i386 , target: '10.13', deps: local, check: false } - { host: macos-12, compiler: '14.2', arch: x64_64, target: '10.13', deps: small, check: true } - { host: macos-12, compiler: '14.2', arch: i386 , target: '10.13', deps: small, check: false } + - { host: macos-12, compiler: '13.2', arch: x64_64, target: '10.9' , deps: local, check: true } + - { host: macos-12, compiler: '13.2', arch: i386 , target: '10.9' , deps: local, check: false } + - { host: macos-12, compiler: '13.2', arch: x64_64, target: '10.9' , deps: small, check: true } + - { host: macos-12, compiler: '13.2', arch: i386 , target: '10.9' , deps: small, check: false } concurrency: group: ${{github.ref}}-${{github.workflow}}-${{matrix.host}}-${{matrix.compiler}}-${{matrix.arch}}-${{matrix.target}}-${{matrix.deps}} cancel-in-progress: true |