Skip to content

Commit

Permalink
check more gcc versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ofmla authored Feb 27, 2024
1 parent 743adc8 commit aae4f42
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/test_bindings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,17 @@ jobs:
name: Test SPERR Fortran bindings on ubuntu-latest
runs-on: ubuntu-latest

strategy:
matrix:
gcc-version: [9, 10, 11]

steps:
# Setup GCC
- name: Set up GCC ${{ matrix.gcc-version }}
uses: actions/setup-gcc@v2
with:
gcc-version: ${{ matrix.gcc-version }}

# Clone the SPERR repository
- name: Clone SPERR repository
uses: GuillaumeFalourd/[email protected]
Expand Down Expand Up @@ -49,8 +59,7 @@ jobs:
mv output.data 3d-output.data
cp ${GITHUB_WORKSPACE}/SPERR/test_data/lena512.float ${RUNNER_TEMP}
cp ${GITHUB_WORKSPACE}/SPERR/test_data/density_128x128x256.d64 ${RUNNER_TEMP}
cp *.data ${RUNNER_TEMP}
cp *.stream ${RUNNER_TEMP}
cp *.data *.stream ${RUNNER_TEMP}
# Clone the own repository to access test data files
- name: Clone own repository
Expand Down

0 comments on commit aae4f42

Please sign in to comment.