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 97d23a4 commit 343bcdcCopy full SHA for 343bcdc
.travis.yml
@@ -53,6 +53,13 @@ matrix:
53
sources: &sources
54
- ubuntu-toolchain-r-test
55
56
+install:
57
+ - |
58
+ CMAKE_URL="https://cmake.org/files/v3.16/cmake-3.16.2-Linux-x86_64.tar.gz"
59
+ mkdir cmake && travis_retry wget --quiet -O - ${CMAKE_URL} | tar --strip-components=1 -xz -C cmake
60
+ export PATH=$(realpath cmake/bin):${PATH}
61
+ cmake --version
62
+
63
script:
64
- mkdir build && cd build
65
- cmake ../cpp11training
0 commit comments