[doc] changelog: dft_exec dict/env-var support and Ce2O3 tutorial update #121
This file contains hidden or 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 unstable & doc | |
| on: | |
| push: | |
| 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" | |
| permissions: | |
| contents: write | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ghcr.io/triqs/solid_dmft_github_ci:${{github.ref_name}} | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Build solid_dmft | |
| run: | | |
| cmake -S . -B build/ -DBuild_Documentation=ON | |
| cmake --build build/ --verbose | |
| - name: Test solid_dmft | |
| run: | | |
| cmake --build build/ --target test | |
| - name: Deploy pages 🚀 | |
| uses: JamesIves/github-pages-deploy-action@v4 | |
| with: | |
| branch: gh-pages | |
| # Publish the unstable docs into their own subfolder so the per-branch | |
| # folders (latest, 3.3.x, ...) coexist on gh-pages. `clean` is scoped to | |
| # this target-folder, so sibling folders survive. Do NOT set | |
| # single-commit here: it would wipe the whole branch (and all siblings). | |
| folder: build/doc/html/ | |
| target-folder: unstable | |
| doc-index: | |
| name: doc index | |
| needs: build | |
| uses: ./.github/workflows/update_doc_index.yml |