We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59dd7af commit a739591Copy full SHA for a739591
.github/workflows/CI.yml
@@ -35,6 +35,13 @@ jobs:
35
with:
36
python-version: 3.x
37
38
+ - name: Install CMake Linux
39
+ if: contains( matrix.os, 'ubuntu')
40
+ run: |
41
+ curl -O https://github.com/Kitware/CMake/releases/download/v3.16.3/cmake-3.16.3-Linux-x86_64.tar.gz
42
+ tar xzf cmake-3.16.3-Linux-x86_64.tar.gz
43
+ sudo ln -s ${HOME}/cmake-3.16.3-Linux-x86_64/bin/cmake /usr/local/bin/
44
+
45
- name: Install GFortran Linux
46
if: contains( matrix.os, 'ubuntu')
47
run: |
0 commit comments