mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-26 00:21:13 +00:00
New CI: macOS 13, Xcode 14.3, C++ 20
Signed-off-by: Vladislav Shchapov <vladislav@shchapov.ru>
This commit is contained in:
parent
abdb7fdf88
commit
c684a06d51
14
.github/workflows/macos.yml
vendored
14
.github/workflows/macos.yml
vendored
@ -7,20 +7,30 @@ permissions:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: macos-11
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
|
os: [macos-11, macos-13]
|
||||||
build_type: [Debug, Release]
|
build_type: [Debug, Release]
|
||||||
std: [11, 17]
|
std: [11, 17, 20]
|
||||||
|
exclude:
|
||||||
|
- { os: macos-11, std: 20 }
|
||||||
|
- { os: macos-13, std: 11 }
|
||||||
|
- { os: macos-13, std: 17 }
|
||||||
include:
|
include:
|
||||||
- shared: -DBUILD_SHARED_LIBS=ON
|
- shared: -DBUILD_SHARED_LIBS=ON
|
||||||
|
|
||||||
|
runs-on: '${{ matrix.os }}'
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
||||||
|
|
||||||
- name: Set timezone
|
- name: Set timezone
|
||||||
run: sudo systemsetup -settimezone 'Asia/Yekaterinburg'
|
run: sudo systemsetup -settimezone 'Asia/Yekaterinburg'
|
||||||
|
|
||||||
|
- name: Select Xcode 14.3 (macOS 13)
|
||||||
|
run: sudo xcode-select -s "/Applications/Xcode_14.3.app"
|
||||||
|
if: ${{ matrix.os == 'macos-13' }}
|
||||||
|
|
||||||
- name: Create Build Environment
|
- name: Create Build Environment
|
||||||
run: cmake -E make_directory ${{runner.workspace}}/build
|
run: cmake -E make_directory ${{runner.workspace}}/build
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user