add buffer partition #559
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: Build and Test | |
on: | |
pull_request: | |
push: | |
jobs: | |
build_and_test: | |
name: Build and test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
submodules: 'recursive' | |
- uses: cachix/install-nix-action@v18 | |
with: | |
# install_url: https://releases.nixos.org/nix/nix-2.4/install | |
extra_nix_config: | | |
experimental-features = nix-command flakes | |
- run: nix develop .#build --command cmake -S . -B build -G Ninja -DBUILD_TESTING=ON -DBUILD_EXAMPLE=ON -DBRANCH=branched -DHUGEPAGES=OFF | |
- run: nix develop .#build --command ninja -C build | |
- run: nix develop .#build --command ctest -V --test-dir build |