-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
11 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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] | ||
|
@@ -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 | ||
|