Update pip packages and doc fixes
#1904
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: Unit tests | |
| 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 | |
| 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: | |
| ci: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| shell: bash -l {0} | |
| strategy: | |
| matrix: | |
| compiler: [gcc-10, clang-15] | |
| fail-fast: false | |
| name: "${{ matrix.compiler }}" | |
| env: | |
| CC: ${{ matrix.compiler }} | |
| 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 | |
| use-mamba: false | |
| - name: Cache conda environment | |
| uses: actions/cache@v3 | |
| id: cache | |
| with: | |
| path: ${{ env.NOMP_CONDA_ENV }} | |
| key: conda-${{ runner.os }}-${{ hashFiles('environment.yml') }}-${{ hashFiles('requirements.txt') }}-${{ env.NOMP_CACHE_NUMBER }} | |
| - name: Update conda environment | |
| id: update_env | |
| run: | | |
| conda env update -n libnomp -f environment.yml | |
| if: steps.cache.outputs.cache-hit != 'true' | |
| - uses: actions/cache@v3 | |
| id: pocl_cache | |
| with: | |
| path: ${{ env.NOMP_CONDA_ENV }}/lib/pocl | |
| key: ${{ runner.os }}-build-pocl-${{ env.POCL_CACHE_NUMBER }} | |
| - name: Install pocl | |
| id: install_pocl | |
| run: | | |
| conda install -c conda-forge pocl | |
| if: (steps.pocl_cache.outputs.cache-hit != 'true') || (steps.cache.outputs.cache-hit != 'true') | |
| - name: Build libnomp | |
| id: build_libnomp | |
| run: | | |
| ./lncfg --cc ${CC} \ | |
| --install-prefix ${NOMP_INSTALL_DIR} \ | |
| --prefix-path ${CONDA_PREFIX} \ | |
| --enable-opencl --opencl-lib ${CONDA_PREFIX}/lib/libOpenCL.so \ | |
| --enable-tests | |
| ./lnbuild --install | |
| - name: Run libnomp tests | |
| id: run_libnomp | |
| run: | | |
| ${NOMP_INSTALL_DIR}/bin/lnrun --test backend=opencl | |
| - name: Block to allow inspecting failures | |
| run: sleep 30m | |
| if: ${{ failure() && inputs.debug_enabled }} |