optimize KeyNotFound error message generation in map method #1589
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: MacOS | |
on: | |
push: | |
branches: | |
- '*' | |
tags-ignore: | |
- 'v*' | |
jobs: | |
build_on_mac_12: | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: prepare | |
run: brew install ninja | |
- name: configure | |
run: | | |
export SDKROOT="$(xcrun --sdk macosx --show-sdk-path)" | |
mkdir build | |
cd build | |
cmake .. -G Ninja -DUSE_EXTRA_TEST=on | |
- name: build | |
run: | | |
cd build | |
ninja | |
ninja install | |
./arsh ../scripts/copy_mod4extra.ds | |
- name: test | |
run: | | |
cd build | |
ctest -j4 --output-on-failure | |
build_on_mac_13: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: prepare | |
run: brew install ninja | |
- name: configure | |
run: | | |
export SDKROOT="$(xcrun --sdk macosx --show-sdk-path)" | |
mkdir build | |
cd build | |
cmake .. -G Ninja -DUSE_EXTRA_TEST=on | |
- name: build | |
run: | | |
cd build | |
ninja | |
ninja install | |
./arsh ../scripts/copy_mod4extra.ds | |
- name: test | |
run: | | |
cd build | |
ctest -j4 --output-on-failure | |
build_on_mac_14: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: prepare | |
run: brew install ninja | |
- name: configure | |
run: | | |
export SDKROOT="$(xcrun --sdk macosx --show-sdk-path)" | |
mkdir build | |
cd build | |
cmake .. -G Ninja -DUSE_EXTRA_TEST=on | |
- name: build | |
run: | | |
cd build | |
ninja | |
sudo ninja install | |
./arsh ../scripts/copy_mod4extra.ds | |
- name: test | |
run: | | |
cd build | |
ctest -j4 --output-on-failure |