We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c2d146 commit e9033abCopy full SHA for e9033ab
.github/workflows/test.yml
@@ -66,6 +66,11 @@ jobs:
66
ln -s /usr/local/bin/gcc-${{ env.GCC_V }} /usr/local/bin/gcc
67
ln -s /usr/local/bin/g++-${{ env.GCC_V }} /usr/local/bin/g++
68
69
+ - name: Install GCC (Linux)
70
+ - run: |
71
+ sudo apt update
72
+ sudo apt install gcc-${{ env.GCC_V }} g++-${{ env.GCC_V }} gfortran-${{ env.GCC_V }}
73
+
74
- name: Install GCC (Linux)
75
if: contains(matrix.os, 'ubuntu')
76
run: >-
0 commit comments