We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f219fe7 commit 3063fe4Copy full SHA for 3063fe4
.github/actions/linux-build/action.yml
@@ -38,15 +38,16 @@ runs:
38
shell: bash
39
run: |
40
sudo apt-get -qq update
41
- sudo apt-get -qq -y install lcov ccache gfortran-11
+ sudo apt-get -qq -y install lcov ccache
42
if [[ "${{ inputs.optional-dependencies }}" == "ON" ]]; then
43
sudo apt-get -qq -y install libhdf5-dev
44
fi
45
if [[ "${{ inputs.compiler }}" == "gcc" ]]; then
46
if [[ "${{ inputs.version }}" == "min" ]]; then
47
sudo apt-get -qq -y install gcc-9
48
sudo apt-get -qq -y install g++-9
49
- else
+ else
50
+ sudo apt-get -qq -y install gfortran-11
51
sudo apt-get -qq -y install gcc-11
52
sudo apt-get -qq -y install g++-11
53
0 commit comments