Hide cached variables set in find fprops module #186
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 | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
name: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash -el {0} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-22.04 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Set up miniconda | |
uses: conda-incubator/setup-miniconda@v3 | |
with: | |
python-version: 3.9 | |
auto-update-conda: false | |
channels: andrsd,defaults | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
conda install \ | |
cmake \ | |
make \ | |
mpich-mpicxx \ | |
exodusii==2022.08.01 \ | |
fmt==9.1.0 \ | |
yaml-cpp==0.8.0 \ | |
lcov | |
- name: Configure | |
run: | | |
cmake -S . -B ${{ github.workspace }}/build \ | |
-DEXODUSIICPP_LIBRARY_TYPE=SHARED \ | |
-DEXODUSIICPP_BUILD_TESTS=YES \ | |
-DEXODUSIICPP_CODE_COVERAGE=YES | |
- name: Build | |
run: make -C ${{ github.workspace }}/build | |
- name: Run tests | |
run: | | |
echo "### Test results" >> $GITHUB_STEP_SUMMARY | |
ctest --test-dir ${{ github.workspace }}/build -O test.log | |
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY | |
awk 's;/^\[HANDLER_OUTPUT\]/{s=1}' test.log >> $GITHUB_STEP_SUMMARY | |
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY | |
- name: Upload test result | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test-results-${{ matrix.os }} | |
path: ${{ github.workspace }}/build/Testing/Temporary/LastTest.log | |
- name: Generate code coverage | |
if: startsWith(matrix.os, 'ubuntu') | |
run: | | |
make -C ${{ github.workspace }}/build coverage | |
- name: Upload coverage artifact | |
if: startsWith(matrix.os, 'ubuntu') | |
uses: actions/upload-artifact@v4 | |
with: | |
name: coverage-${{ matrix.os }} | |
path: ${{ github.workspace }}/build/coverage.info | |
upload-to-codecov: | |
needs: [build] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Download artifacts | |
uses: actions/download-artifact@v4 | |
- name: Upload to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: Run codacy-coverage-reporter | |
uses: codacy/codacy-coverage-reporter-action@v1 | |
with: | |
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} | |
coverage-reports: 'coverage-ubuntu-22.04/coverage.info' |