Skip to content

Commit

Permalink
Get latest version of cmake, minimum required by new RMM is 3.26
Browse files Browse the repository at this point in the history
  • Loading branch information
gartavanis committed Dec 14, 2024
1 parent 1bdac5e commit a66a3bd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -270,14 +270,14 @@ jobs:
CACHE_HIT: ${{steps.cache-parflow-dependencies.outputs.cache-hit}}
run: |
if [[ "$CACHE_HIT" != 'true' ]]; then
echo "Installing CMake v3.25.1"
echo "Installing CMake v3.31.2"
cd $HOME/depend
echo "cache-${{ matrix.config.os }}-${{ matrix.config.backend }}-${{ secrets.CACHE_VERSION }}" > $HOME/depend/cache-key
wget -nv --no-check-certificate https://github.com/Kitware/CMake/releases/download/v3.25.1/cmake-3.25.1-linux-x86_64.tar.gz
tar -xf cmake-3.25.1-linux-x86_64.tar.gz
$HOME/depend/cmake-3.25.1-linux-x86_64/bin/cmake --version
wget -nv --no-check-certificate https://github.com/Kitware/CMake/releases/download/v3.31.2/cmake-3.31.2-linux-x86_64.tar.gz
tar -xf cmake-3.31.2-linux-x86_64.tar.gz
$HOME/depend/cmake-3.31.2-linux-x86_64/bin/cmake --version
fi
echo "$HOME/depend/cmake-3.25.1-linux-x86_64/bin" >> $GITHUB_PATH
echo "$HOME/depend/cmake-3.31.2-linux-x86_64/bin" >> $GITHUB_PATH
- name: NVidia Driver Install
if: matrix.config.backend == 'cuda' || matrix.config.backend == 'kokkos'
Expand Down

0 comments on commit a66a3bd

Please sign in to comment.