This is just a test #305
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: CI | |
on: | |
push: | |
branches: | |
- main | |
- 'releases/**' | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
release: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test_on_linux: | |
name: Test on Linux containers (Ubuntu LTS) | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
container_version: | |
- G4.11.2 | |
- G4.11.1 | |
- G4.11.0 | |
- slim | |
container: docker://gipert/remage-base:${{ matrix.container_version }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build project | |
run: | | |
mkdir build | |
cd build | |
cmake .. | |
make | |
make install | |
- name: Run full test suite | |
if: ${{ matrix.container_version != 'slim' }} | |
run: | | |
cd build | |
ctest -R confinement/geometrical.mac --output-on-failure | |
cat -v Testing/Temporary/LastTest.log | |
- name: Run minimal test suite | |
if: ${{ matrix.container_version == 'slim' }} | |
run: | | |
cd build | |
ctest --output-on-failure --label-exclude extra | |
# vim: expandtab tabstop=2 shiftwidth=2 |