Skip to content

Commit a739591

Browse files
committed
Install cmake on Linux
1 parent 59dd7af commit a739591

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/CI.yml

+7
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,13 @@ jobs:
3535
with:
3636
python-version: 3.x
3737

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+
3845
- name: Install GFortran Linux
3946
if: contains( matrix.os, 'ubuntu')
4047
run: |

0 commit comments

Comments
 (0)