Skip to content

Commit

Permalink
Travis-CI + pkgx
Browse files Browse the repository at this point in the history
  • Loading branch information
acgetchell committed Nov 25, 2023
1 parent d47bd93 commit 5ee5af8
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,22 +32,22 @@ os:
- linux

compiler:
- g++
- gcc
- clang

jobs:
fast_finish: true
include:
# CppCheck
- os: linux
compiler: g++
compiler: gcc
env: CPPCHECK=true
before_script:
- export CMAKE_ARGS="-D ENABLE_CPPCHECK:BOOL=TRUE"
after_success: skip
# Valgrind
- os: linux
compiler: g++
compiler: gcc
env: VALGRIND=true
before_script:
- export CMAKE_ARGS="-D ENABLE_IPO:BOOL=FALSE -D ENABLE_VALGRIND:BOOL=TRUE"
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
- ./initialize --s -n32000 -t11 -o
# Doxygen
- os: linux
compiler: g++
compiler: gcc
env: DOXYGEN=true
install: skip
script:
Expand All @@ -127,18 +127,18 @@ jobs:
condition: $TRAVIS_BRANCH =~ ^(master|develop)$
allow_failures:
- os: linux
compiler: g++
compiler: gcc
env: DOXYGEN=true

before_install:
- travis_wait 60 curl -Ssf https://pkgx.sh/$(uname)/$(uname -m).tgz | sudo tar xz -C /usr/local/bin
- if [[ "$CXX" == "g++" ]]; then
env +gcc@13
export CXX="g++-13" CC="gcc-13"
- if [[ "$CXX" == "g++" ]]; then
env +gcc@13
export CXX="g++-13" CC="gcc-13"
fi
- if [[ "$CXX" == "clang++" ]]; then
env +clang@16
export CXX="clang++-16" CC="clang-16"
- if [[ "$CXX" == "clang++" ]]; then
env +clang@16
export CXX="clang++-16" CC="clang-16"
fi

install:
Expand Down

0 comments on commit 5ee5af8

Please sign in to comment.