Skip to content

Commit

Permalink
Update Travis CI configuration
Browse files Browse the repository at this point in the history
- Remove unnecessary `travis_wait` command
- Update package installation process using `pkgx`
- Add command to display help information for `pkgx`
- Update environment variables for GCC version 13
  • Loading branch information
acgetchell committed Nov 7, 2023
1 parent adb079f commit c6098d0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,9 @@ jobs:
env: DOXYGEN=true

before_install:
- travis_wait 60 curl -fsS https://pkgx.sh | sh
- curl -o ./pkgx --compressed -f --proto '=https' https://pkgx.sh/$(uname)/$(uname -m)
- sudo install -m 755 pkgx /usr/local/bin
- pkgx --help
- if [[ "$CXX" == "g++" ]]; then
env +gcc@13
export CXX="g++-13" CC="gcc-13"
Expand Down

0 comments on commit c6098d0

Please sign in to comment.