File tree Expand file tree Collapse file tree 1 file changed +1
-13
lines changed
Expand file tree Collapse file tree 1 file changed +1
-13
lines changed Original file line number Diff line number Diff line change 3535
3636 env : # environment variables available to all steps
3737 CXX : ${{ matrix.config.cxx }}
38- APT_PACKAGES : python3 pip python-is-python3 g++ clang gpg wget
38+ APT_PACKAGES : python3 pip python-is-python3 g++ clang gpg wget cmake
3939 PIP_PACKAGES : pytest build numpy scipy matplotlib PyYAML GitPython
4040 SRC_HOME : /home/runner/work/pressio-tutorials/pressio-tutorials
4141 BUILD_DIR : /home/runner/work/build/pressio-tutorials
4848 sudo apt-get update
4949 sudo apt-get install -y --install-suggests $APT_PACKAGES
5050
51- - name : Install CMake
52- run : |
53- export CMAKE_KEYRING=/usr/share/keyrings/kitware-archive-keyring.gpg
54- wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null \
55- | gpg --dearmor - \
56- | sudo tee $CMAKE_KEYRING >/dev/null
57- echo "deb [signed-by=$CMAKE_KEYRING] https://apt.kitware.com/ubuntu/ focal main" \
58- | sudo tee /etc/apt/sources.list.d/kitware.list >/dev/null
59- sudo apt-get update
60- rm $CMAKE_KEYRING
61- sudo apt-get install -y kitware-archive-keyring cmake
62-
6351 - name : Check environment
6452 run : |
6553 echo ======================================================
You can’t perform that action at this time.
0 commit comments