Requirements #111
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: | |
- development | |
pull_request: | |
branches: | |
- development | |
env: | |
CTEST_OUTPUT_ON_FAILURE: 1 | |
CPM_SOURCE_CACHE: ${{ github.workspace }}/cpm_modules | |
LUPNT_DATA_PATH: ${{ github.workspace }}/LuPNT_data | |
jobs: | |
build-macos: | |
runs-on: macos-latest | |
steps: | |
- name: install dependencies | |
run: brew install boost libomp hdf5 | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
id: cache-cpm-modules | |
with: | |
path: "**/cpm_modules" | |
key: ${{ github.workflow }}-cpm-modules-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }} | |
- name: cache LuPNT_data | |
id: cache-lupnt | |
uses: actions/cache@v4 | |
with: | |
path: data | |
key: LuPNT_data-${{ vars.LUPNT_DATA_CACHE_DATE }} | |
- name: download and unzip LuPNT_data | |
if: steps.cache-lupnt.outputs.cache-hit != 'true' | |
run: | | |
curl -L https://bit.ly/LuPNT_data -o LuPNT_data.zip | |
unzip LuPNT_data.zip | |
rm LuPNT_data.zip | |
- name: configure | |
run: cmake -Stest -Bbuild -DCMAKE_BUILD_TYPE=Debug | |
- name: build | |
run: cmake --build build -j4 | |
- name: test | |
run: | | |
cd build | |
ctest --build-config Debug |