Add a CMake configuration file #1417
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: Test documentation | |
on: | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
workflow_dispatch: | |
inputs: | |
debug_enabled: | |
type: boolean | |
description: 'Run the build with tmate debugging enabled' | |
required: false | |
default: false | |
env: | |
NOMP_CONDA_ENV: /usr/share/miniconda/envs/libnomp-dev | |
NOMP_INSTALL_DIR: ${{ github.workspace }}/install | |
NOMP_CACHE_NUMBER: 0 # Increase to reset cache manually. | |
POCL_CACHE_NUMBER: 0 # Increase to reset cache manually. | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash -l {0} | |
env: | |
PUSH_ON_MAIN: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} | |
steps: | |
- name: Setup GitHub actions | |
uses: actions/checkout@v3 | |
- name: Setup tmate session | |
uses: mxschmitt/action-tmate@v3.13 | |
if: ${{ inputs.debug_enabled }} | |
- name: Setup conda environment | |
id: setup_conda | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
activate-environment: libnomp-dev | |
use-mamba: false | |
- name: Cache conda environment | |
uses: actions/cache@v3 | |
with: | |
path: ${{ env.NOMP_CONDA_ENV }} | |
key: conda-${{ runner.os }}-${{ hashFiles('environment-dev.yml') }}-${{ hashFiles('requirements.txt') }}-${{ hashFiles('requirements-dev.txt') }}-${{ env.NOMP_CACHE_NUMBER }} | |
id: cache | |
- name: Update conda environment | |
id: update_env | |
run: | | |
conda env update -n libnomp-dev -f environment-dev.yml | |
if: steps.cache.outputs.cache-hit != 'true' | |
- name: Build documentation | |
id: build_docs | |
run: | | |
./lncfg --install-prefix ${NOMP_INSTALL_DIR} --prefix-path ${CONDA_PREFIX} --enable-docs | |
./lnbuild --install --update-shell | |
- name: Bypass Jekyll | |
id: bypass_jekyll | |
if: ${{ fromJSON(env.PUSH_ON_MAIN) }} | |
run: | | |
cd ${NOMP_INSTALL_DIR}/docs && touch .nojekyll | |
- name: Deploy to gh-pages | |
id: deploy | |
if: ${{ fromJSON(env.PUSH_ON_MAIN) }} | |
uses: JamesIves/github-pages-deploy-action@releases/v3 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BRANCH: gh-pages | |
FOLDER: ${{ env.NOMP_INSTALL_DIR }}/docs | |
- name: Block to allow inspecting failures | |
run: sleep 30m | |
if: ${{ failure() && inputs.debug_enabled }} |