Skip to content
This repository was archived by the owner on Aug 5, 2022. It is now read-only.

Commit 124158d

Browse files
committed
Merge pull request #318 from dawagner/freeze-catch-version
CI: Freeze the version of "catch" used in the CI
2 parents 360a6be + 3720042 commit 124158d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,9 @@ addons:
3636

3737
install:
3838
- pip install --user cpp-coveralls; export PATH=$HOME/.local/bin:$PATH
39+
# This version of catch is known to work.
3940
- wget --directory-prefix $PREFIX/include
40-
https://raw.github.com/philsquared/Catch/master/single_include/catch.hpp
41+
https://raw.github.com/philsquared/Catch/v1.2.1/single_include/catch.hpp
4142
- wget 'https://01.org/sites/default/files/asio-1.10.6.tar.gz'
4243
- tar xf asio-1.10.6.tar.gz -C $PREFIX --strip-components=1
4344

appveyor.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,9 @@ install:
4343
wget --no-check-certificate https://01.org/sites/default/files/asio-1.10.6.tar.gz &&
4444
7z x asio-1.10.6.tar.gz &&
4545
7z x -i"!asio*/include" asio-1.10.6.tar)
46+
# This version of catch is known to work.
4647
- if not exist catch (
47-
wget --no-check-certificate https://raw.github.com/philsquared/Catch/master/single_include/catch.hpp --directory-prefix catch )
48+
wget --no-check-certificate https://raw.github.com/philsquared/Catch/v1.2.1/single_include/catch.hpp --directory-prefix catch )
4849
- set DEBUG_LIBXML2_PATH=%APPVEYOR_BUILD_FOLDER%\libxml2-x86_64-debug
4950
- set RELEASE_LIBXML2_PATH=%APPVEYOR_BUILD_FOLDER%\libxml2-x86_64
5051

0 commit comments

Comments
 (0)