Skip to content

Commit

Permalink
Merge pull request kokkos#124 from cwpearson/ci/compileonly-cmake-3230
Browse files Browse the repository at this point in the history
ci: use CMake 3.23.0 for compile only tests
  • Loading branch information
dssgabriel authored Sep 17, 2024
2 parents a968a13 + c1f86f7 commit be3f6c6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/linux-compileonly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@ jobs:
shopt -s dotglob && mv "$GITHUB_WORKSPACE"/* ${{ github.workspace }}
- name: Install packages
run: |
apt-get update && apt-get install -y cmake wget git
apt-get update && apt-get install -y wget git
- name: Install CMake
run: |
wget https://github.com/Kitware/CMake/releases/download/v3.23.5/cmake-3.23.5-linux-x86_64.tar.gz
tar -C /usr/local --strip-components=1 -xf cmake-3.23.5-linux-x86_64.tar.gz
# Build a CUDA-enabled OpenMPI. This is probably not necessary for a compile-only test.
- name: Download MPI
run: |
Expand Down

0 comments on commit be3f6c6

Please sign in to comment.