Skip to content

Commit

Permalink
17 -> 14/20
Browse files Browse the repository at this point in the history
  • Loading branch information
srz-zumix committed Apr 20, 2023
1 parent ada76f1 commit beb2315
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,27 +41,31 @@ cirrus_use_lib_task:
depends_on:
- cirrus_gcc_test

cirrus_osx_14_test_task: &osx_task
cirrus_osx_17_test_task: &osx_task
only_if: *default-condition
auto_cancellation: true
osx_instance:
image: ghcr.io/cirruslabs/macos-ventura-base:latest
env:
- STDFLAG: -std=gnu++14
- STDFLAG: -std=c++17
version_script: make -C test showcxxversion
build_script: make -C test -j$((`getconf _NPROCESSORS_ONLN`))
test_script : make -C test test
report_script: make -C test report

cirrus_osx_17_test_task:
cirrus_osx_14_test_task:
<<: *osx_task
env:
- STDFLAG: -std=gnu++17
# https://stackoverflow.com/questions/56924853/why-xcode-11-beta-cant-use-c17s-filesystem-header
# ** Comment out because the image is mojave **
# CXXFLAGS: -mmacosx-version-min=10.15
- STDFLAG: -std=c++14
depends_on:
- cirrus_osx_14_test
- cirrus_osx_17_test

cirrus_osx_20_test_task:
<<: *osx_task
env:
- STDFLAG: -std=c++20
depends_on:
- cirrus_osx_17_test

# cirrus_worker_info_task:
# container:
Expand Down

0 comments on commit beb2315

Please sign in to comment.