summaryrefslogtreecommitdiff
path: root/scripts/travis
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/travis')
-rwxr-xr-xscripts/travis/before_script.sh4
-rwxr-xr-xscripts/travis/script.sh6
2 files changed, 8 insertions, 2 deletions
diff --git a/scripts/travis/before_script.sh b/scripts/travis/before_script.sh
index 181b2e286..96825f0ab 100755
--- a/scripts/travis/before_script.sh
+++ b/scripts/travis/before_script.sh
@@ -126,9 +126,9 @@ if [ "$TRAVIS_OS_NAME" = linux -a "$QUICHE" ]; then
ln -vnf $(find target/release -name libcrypto.a -o -name libssl.a) deps/boringssl/src/lib/
fi
-if [ "$TRAVIS_OS_NAME" = linux -a "$RUSTLS" ]; then
+if [ "$TRAVIS_OS_NAME" = linux -a "$RUSTLS_VERSION" ]; then
cd $HOME
- git clone --depth=1 --recursive https://github.com/abetterinternet/crustls.git
+ git clone --depth=1 --recursive https://github.com/abetterinternet/crustls.git -b "$RUSTLS_VERSION"
curl https://sh.rustup.rs -sSf | sh -s -- -y
source $HOME/.cargo/env
cargo install cbindgen
diff --git a/scripts/travis/script.sh b/scripts/travis/script.sh
index 9a35affea..0cb5df1fd 100755
--- a/scripts/travis/script.sh
+++ b/scripts/travis/script.sh
@@ -70,6 +70,12 @@ if [ "$T" = "debug-mesalink" ]; then
make "TFLAGS=-n !313 !410 !3001" test-nonflaky
fi
+if [ "$T" = "debug-rustls" ]; then
+ ./configure --enable-debug --enable-werror $C
+ make
+ make "TFLAGS=HTTPS !313" test-nonflaky
+fi
+
if [ "$T" = "novalgrind" ]; then
./configure --enable-werror $C
make