Simplified solver interface for adding new solvers #160
Workflow file for this run
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 PR | |
on: | |
pull_request: | |
branches: [ unstable ] | |
env: | |
CMAKE_BUILD_PARALLEL_LEVEL: 2 | |
CTEST_PARALLEL_LEVEL: 1 | |
CTEST_OUTPUT_ON_FAILURE: 1 | |
OMPI_ALLOW_RUN_AS_ROOT: 1 | |
OMPI_ALLOW_RUN_AS_ROOT_CONFIRM: 1 | |
OMPI_MCA_rmaps_base_oversubscribe: "yes" | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/triqs/solid_dmft_github_ci:unstable | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build solid_dmft | |
run: | | |
cmake -S . -B build/ -DBuild_Documentation=OFF | |
cmake --build build/ --verbose | |
- name: Test solid_dmft | |
run: | | |
cmake --build build/ --target test | |