Skip to content
Snippets Groups Projects
Verified Commit 97fbdb15 authored by Hendrik's avatar Hendrik Committed by Ralph Giles
Browse files

Use curl -O instead of wget


Signed-off-by: default avatarRalph Giles <giles@thaumas.net>
Signed-off-by: default avatarevpobr <evpobr@gmail.com>
parent 5202bbc8
No related branches found
No related tags found
1 merge request!31cmake support
......@@ -23,7 +23,7 @@ cmake:
apt-get install -y libopus-dev libogg-dev libssl-dev
doxygen
script:
- wget https://cmake.org/files/v3.16/cmake-3.16.9-Linux-x86_64.tar.gz
- curl -O https://cmake.org/files/v3.16/cmake-3.16.9-Linux-x86_64.tar.gz
- tar xzf cmake-3.16.9-Linux-x86_64.tar.gz
- cmake-3.16.9-Linux-x86_64/bin/cmake -Bbuild -H.
- cmake-3.16.9-Linux-x86_64/bin/cmake --build build
......
......@@ -17,7 +17,6 @@ addons:
- libogg-dev
- libopus-dev
- libssl-dev
- wget
homebrew:
brewfile: true
......@@ -25,7 +24,7 @@ env: PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/opt/openssl/lib/pkgconfig
before_script:
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then
wget https://cmake.org/files/v3.16/cmake-3.16.9-Linux-x86_64.tar.gz;
curl -O https://cmake.org/files/v3.16/cmake-3.16.9-Linux-x86_64.tar.gz;
tar xzf cmake-3.16.9-Linux-x86_64.tar.gz;
export PATH="${PWD}/cmake-3.16.9-Linux-x86_64/bin:${PATH}";
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment