Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
makepath-alex committed Dec 9, 2024
1 parent 7572d43 commit b8830c2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
matrix:
os: [ubuntu-22.04, macos-13, windows-2022]
compiler: [gfortran-10, gfortran-11, gfortran-12, gfortran-13, gfortran-14]
# use-conda: [true, false]
fpmodel: [DP, SP]
# Conda does not contain gfortran-10/11/12 for windows and gfortran-14 for macos
exclude:
Expand Down Expand Up @@ -84,7 +85,11 @@ jobs:
FC_VERSION="${FC_VERSION##*-}"
echo "FC version: $FC_VERSION"
conda install -c conda-forge gfortran=$FC_VERSION netcdf-fortran ninja -y
conda install -c conda-forge netcdf-fortran ninja -y
if [[ "${{ matrix.os }}" != "ubuntu-22.04" ]]; then
conda install -c conda-forge gfortran=$FC_VERSION
fi
#
# Build libraries, examples, and tests
#
Expand Down

0 comments on commit b8830c2

Please sign in to comment.