Skip to content

Commit

Permalink
added updated travis
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobaustin123 committed May 18, 2020
1 parent 7cc889d commit 9266d04
Show file tree
Hide file tree
Showing 2 changed files with 2,613 additions and 5 deletions.
35 changes: 30 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,17 @@ sudo: required

# Build Job Matrix

stages:
- test
- name: deploy
# if: branch = master

jobs:
include:

# Valgrind
- os: linux
- stage: test
os: linux
compiler: gcc
addons:
apt:
Expand All @@ -27,7 +33,8 @@ jobs:
- VALGRIND="ON"

# Coveralls
- os: linux
- stage: test
os: linux
compiler: gcc
addons:
apt:
Expand Down Expand Up @@ -55,7 +62,8 @@ jobs:

# Linux/GCC>=5

- os: linux
- stage: test
os: linux
compiler: gcc
env:
- CXX_COMPILER="g++-7"
Expand All @@ -79,7 +87,8 @@ jobs:
'libopenblas-dev', 'liblapack-dev',
'libarpack2-dev']

- os: linux
- stage: test
os: linux
compiler: gcc
env:
- CXX_COMPILER="g++-9"
Expand All @@ -91,8 +100,24 @@ jobs:
'libopenblas-dev', 'liblapack-dev',
'libarpack2-dev']

# Build Script
- stage: deploy
os: linux
compiler: gcc
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['doxygen']

script:
- doxygen Doxyfile

deploy:
provider: pages
skip_cleanup: true
local_dir: docs/doxygen/html
github_token: $GH_PAGES_TOKEN

# Build Script
script:

# set CXX to correct compiler
Expand Down
Loading

0 comments on commit 9266d04

Please sign in to comment.