Make push_back option for cpu-only build #82
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, pull_request] | |
jobs: | |
nyx_macos: | |
name: [email protected] [email protected] | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Dependencies | |
run: .github/workflows/dependencies/dependencies_mac.sh | |
- name: Build & Install | |
run: | | |
cmake -S . -B build \ | |
-DNyx_HEATCOOL=yes \ | |
-DNyx_HYDRO=yes \ | |
-DCMAKE_CXX_COMPILER_LAUNCHER=$(which ccache) | |
cmake --build build --parallel 2 |