From 5ab9ba32c06cf44f3410db34749f65240f2d3346 Mon Sep 17 00:00:00 2001 From: Adam Getchell Date: Mon, 6 Nov 2023 17:59:39 -0800 Subject: [PATCH] Update before_install script in .travis.yml - Add travis_wait 60 before the existing command to increase timeout - Update the code to use gcc-13 as the C++ compiler --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 87d13b577..14a974250 100644 --- a/.travis.yml +++ b/.travis.yml @@ -129,7 +129,7 @@ jobs: env: DOXYGEN=true before_install: - - eval "$(curl https://pkgx.sh)" + - travis_wait 60 eval "$(curl https://pkgx.sh)" - if [[ "$CXX" == "g++" ]]; then env +gcc@13 export CXX="g++-13" CC="gcc-13"