From a7ad6ba107a7152d85411c349b968f28897c409f Mon Sep 17 00:00:00 2001 From: David Murdoch Date: Thu, 1 Oct 2020 15:55:11 -0400 Subject: [PATCH] chore: try to fix ssh packages in CI --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 090fd64e53..37b09824f8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,6 +23,8 @@ addons: - g++-5 before_install: + # Apply workaround for git:// packages + - git config --global url."https://github.com/".insteadOf ssh://git@github.com/ - if [ $TRAVIS_OS_NAME == "linux" ]; then export CC="gcc-5"; export CXX="g++-5"; @@ -31,7 +33,5 @@ before_install: fi script: -# Apply workaround for git:// packages - - git config --global url.https://github.com/.insteadOf ssh://git@github.com/ - npm run test - npm run test-smoke