Add contiguous
attribute for arrays passed to c functions (#242)
#1055
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: Docker | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
docker-build-and-test: | |
name: Build and Test - ${{ matrix.dockerfile }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
dockerfile: | |
- Dockerfile | |
- Dockerfile.memcheck | |
- Dockerfile.fortran-gcc | |
- Dockerfile.openmp | |
- Dockerfile.mpi | |
- Dockerfile.mpi_openmp | |
- Dockerfile.python | |
- Dockerfile.pip | |
build_type: [Release, Debug] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Delete huge unnecessary tools folder | |
run: rm -rf /opt/hostedtoolcache | |
- name: Build Docker image | |
run: docker build -t musica -f docker/${{ matrix.dockerfile }} . --build-arg MUSICA_GIT_TAG=${{ github.sha }} --build-arg BUILD_TYPE=${{ matrix.build_type }} | |
- name: Run tests in container | |
if: matrix.dockerfile != 'Dockerfile.coverage' && matrix.dockerfile != 'Dockerfile.pip' | |
run: docker run --name test-container -t musica bash -c 'make test ARGS="--rerun-failed --output-on-failure -j8"' | |
- name: Run coverage tests in container | |
if: matrix.dockerfile == 'Dockerfile.coverage' | |
run: docker run --name test-container -t musica bash -c 'make coverage ARGS="--rerun-failed --output-on-failure -j8"' | |
- name: Copy coverage from container | |
if: matrix.dockerfile == 'Dockerfile.coverage' | |
run: docker cp test-container:build/coverage.info . | |
- name: Upload coverage report | |
if: matrix.dockerfile == 'Dockerfile.coverage' | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: coverage.info |