We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3970c4 commit db90fdeCopy full SHA for db90fde
ci_build.sh
@@ -29,7 +29,11 @@ cmake_install() {
29
wget -qO- "https://cmake.org/files/v3.20/cmake-3.20.5-$CMAKE_SUFFIX.tar.gz" \
30
| tar --strip-components=1 -xz -C $CMAKE_INSTALL_DIR
31
32
- export PATH=$CMAKE_INSTALL_DIR/bin:$PATH
+ if [ $TRAVIS_OS_NAME = "linux" ]; then
33
+ export PATH=$CMAKE_INSTALL_DIR/bin:$PATH
34
+ elif [ $TRAVIS_OS_NAME = "osx" ]; then
35
+ export PATH=$CMAKE_INSTALL_DIR/CMake.app/Contents/bin:$PATH
36
+ fi
37
cmake --version
38
}
39
0 commit comments