-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b39bd21
commit 176dab1
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
name: Native CMake Build | ||
on: [push] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# checkout the code | ||
- uses: actions/checkout@v4 | ||
# setup package dependencies | ||
- name: Dependencies | ||
run: | | ||
sudo apt install libgtest-dev libeigen3-dev nlohmann-json3-dev | ||
# configure repo | ||
- name: Configure | ||
run: | | ||
cmake -B ${{github.workspace}}/build | ||
-DCMAKE_BUILD_TYPE=Release | ||
-DSPARK_DSG_BUILD_TESTS=ON | ||
-DSPARK_DSG_BUILD_PYTHON=ON | ||
-DSPARK_DSG_BUILD_EXAMPLES=ON | ||
# build repo | ||
- name: Build | ||
run: cmake --build ${{github.workspace}}/build --config Release | ||
# run unit tests | ||
- name: Test | ||
run: ctest -C Release |