From: <sv...@op...> - 2024-08-12 17:13:58
|
Author: manx Date: Mon Aug 12 19:13:51 2024 New Revision: 21401 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=21401 Log: [Ref] build: CI: GitHub: macOS: Makefile: Add explicit arch for XCode 13.2. Modified: trunk/OpenMPT/.github/workflows/macOS-Makefile.yml Modified: trunk/OpenMPT/.github/workflows/macOS-Makefile.yml ============================================================================== --- trunk/OpenMPT/.github/workflows/macOS-Makefile.yml Mon Aug 12 19:04:41 2024 (r21400) +++ trunk/OpenMPT/.github/workflows/macOS-Makefile.yml Mon Aug 12 19:13:51 2024 (r21401) @@ -49,8 +49,8 @@ - { host: macos-13, compiler: '15.2', arch: x86_64, target: '10.13', deps: local, check: true , ancient: false } - { host: macos-12, compiler: '14.2', arch: x86_64, target: '10.13', deps: local, check: true , ancient: false } - { host: macos-12, compiler: '14.2', arch: x86_64, target: '10.13', deps: small, check: true , ancient: false } - - { host: macos-12, compiler: '13.2', arch: '' , target: '10.13', deps: local, check: true , ancient: true } - - { host: macos-12, compiler: '13.2', arch: '' , target: '10.13', deps: small, check: true , ancient: true } + - { host: macos-12, compiler: '13.2', arch: x86_64, target: '10.13', deps: local, check: true , ancient: true } + - { host: macos-12, compiler: '13.2', arch: x86_64, target: '10.13', deps: small, check: true , ancient: true } concurrency: group: ${{github.ref}}-${{github.workflow}}-${{matrix.host}}-${{matrix.compiler}}-${{matrix.arch}}-${{matrix.target}}-${{matrix.deps}} cancel-in-progress: true |