Skip to content

Commit

Permalink
Merge pull request #16 from LLNL/task/enable-gcc8-ci
Browse files Browse the repository at this point in the history
Added gcc8 CI build for Linux; trying to make "skipped steps" go away.
  • Loading branch information
rhornung67 committed May 1, 2019
2 parents 165dfaf + f5ea3e0 commit 082a47c
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ strategy:
CMAKE_EXTRA_FLAGS: '-DAXOM_ENABLE_SIDRE=Off'
COMPILER: 'g++'
TEST_TARGET: 'linux_gcc7'
linux_gcc8:
VM_ImageName: 'ubuntu-16.04'
Compiler_ImageName: 'axom/compilers:gcc-8'
CMAKE_EXTRA_FLAGS: '-DAXOM_ENABLE_SIDRE=Off'
COMPILER: 'g++'
TEST_TARGET: 'linux_gcc8'
linux_clang4:
VM_ImageName: 'ubuntu-16.04'
Compiler_ImageName: 'axom/compilers:clang-4'
Expand Down Expand Up @@ -55,12 +61,12 @@ steps:
- script: |
cd build
make
displayName: '$(TEST_TARGET) Build & Test'
displayName: '$(TEST_TARGET) Build'
condition: eq( variables['Agent.OS'], 'Darwin')
- script: |
cd build
ctest -T test --output-on-failure -V
displayName: '$(TEST_TARGET) Build & Test'
displayName: '$(TEST_TARGET) Test'
condition: eq( variables['Agent.OS'], 'Darwin')
- script: |
docker run --rm --user='root' -v `pwd`:/home/axom $(Compiler_ImageName) chown -R axom /home/axom
Expand Down

0 comments on commit 082a47c

Please sign in to comment.