-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #85 from LLNL/release-2.0.0
Release 2.0.0
- Loading branch information
Showing
58 changed files
with
2,895 additions
and
3,145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.swp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# .readthedocs.yml | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
# Required | ||
version: 2 | ||
|
||
# Build documentation in the docs/ directory with Sphinx | ||
sphinx: | ||
configuration: docs/sphinx/conf.py | ||
|
||
# Build documentation with MkDocs | ||
#mkdocs: | ||
# configuration: mkdocs.yml | ||
|
||
# Optionally build your docs in additional formats such as PDF and ePub | ||
formats: all | ||
|
||
# Optionally set the version of Python and requirements required to build your docs | ||
python: | ||
version: 3.7 | ||
install: | ||
- requirements: docs/sphinx/requirements.txt | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
services: docker | ||
dist: trusty | ||
language: cpp | ||
env: | ||
global: | ||
- DO_BUILD=yes | ||
- DO_TEST=no | ||
- GTEST_COLOR=1 | ||
matrix: | ||
include: | ||
- compiler: gcc5 | ||
env: | ||
- COMPILER=g++ | ||
- IMG=gcc-5 | ||
- CMAKE_EXTRA_FLAGS="-DENABLE_DEBUG_LOGGING=Off" | ||
- DO_MEMCHECK=no | ||
- compiler: gcc6 | ||
env: | ||
- COMPILER=g++ | ||
- IMG=gcc-6 | ||
- CMAKE_EXTRA_FLAGS="-DENABLE_DEBUG_LOGGING=Off" | ||
- compiler: gcc7 | ||
env: | ||
- COMPILER=g++ | ||
- IMG=gcc-7 | ||
- CMAKE_EXTRA_FLAGS="-DENABLE_DEBUG_LOGGING=Off" | ||
- compiler: gcc8 | ||
env: | ||
- COMPILER=g++ | ||
- IMG=gcc-8 | ||
- CMAKE_EXTRA_FLAGS="-DENABLE_DEBUG_LOGGING=Off" | ||
- compiler: gcc8 | ||
env: | ||
- COMPILER=g++ | ||
- IMG=gcc-8 | ||
- CMAKE_EXTRA_FLAGS="-DENABLE_DEBUG_LOGGING=On" | ||
- compiler: clang4 | ||
env: | ||
- COMPILER=clang++ | ||
- IMG=clang-4 | ||
- CMAKE_EXTRA_FLAGS="-DENABLE_DEBUG_LOGGING=Off" | ||
- compiler: clang5 | ||
env: | ||
- COMPILER=clang++ | ||
- IMG=clang-5 | ||
- CMAKE_EXTRA_FLAGS="-DENABLE_DEBUG_LOGGING=Off" | ||
- compiler: clang6 | ||
env: | ||
- COMPILER=clang++ | ||
- IMG=clang-6 | ||
- CMAKE_EXTRA_FLAGS="-DENABLE_DEBUG_LOGGING=Off" | ||
- compiler: clang6 | ||
env: | ||
- COMPILER=clang++ | ||
- IMG=clang-6 | ||
- CMAKE_EXTRA_FLAGS="-DENABLE_DEBUG_LOGGING=On" | ||
|
||
script: | ||
- docker run --rm --user='root' -v ${TRAVIS_BUILD_DIR}:/home/axom axom/compilers:$IMG chown -R axom /home/axom | ||
- docker run --rm -v ${TRAVIS_BUILD_DIR}:/home/axom -e COMPILER -e DO_BUILD -e DO_TEST -e DO_MEMCHECK -e CMAKE_EXTRA_FLAGS -e GTEST_COLOR axom/compilers:$IMG ./scripts/travis/build_and_test.sh | ||
|
||
after_success: | ||
- if [[ "${CMAKE_EXTRA_FLAGS}" == *"ENABLE_COVERAGE"* ]] ; then bash <(curl -s https://codecov.io/bash) -a "-f" >& /dev/null; fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#!/bin/bash | ||
############################################################################# | ||
# Copyright 2017-2019 Lawrence Livermore National Security, LLC and other | ||
# UMAP Project Developers. See the top-level LICENSE file for details. | ||
# | ||
# SPDX-License-Identifier: LGPL-2.1-only | ||
############################################################################# | ||
|
||
env | ||
function or_die () { | ||
"$@" | ||
local status=$? | ||
if [[ $status != 0 ]] ; then | ||
echo ERROR $status command: $@ | ||
exit $status | ||
fi | ||
} | ||
|
||
or_die mkdir travis-build | ||
cd travis-build | ||
if [[ "$DO_BUILD" == "yes" ]] ; then | ||
or_die cmake -DCMAKE_CXX_COMPILER="${COMPILER}" ${CMAKE_EXTRA_FLAGS} ../ | ||
if [[ ${CMAKE_EXTRA_FLAGS} == *COVERAGE* ]] ; then | ||
or_die make -j 3 | ||
else | ||
or_die make -j 3 VERBOSE=1 | ||
fi | ||
if [[ "${DO_TEST}" == "yes" ]] ; then | ||
or_die ctest -T test --output-on-failure -V | ||
fi | ||
if [[ "${DO_MEMCHECK}" == "yes" ]] ; then | ||
or_die ctest -T memcheck | ||
fi | ||
fi | ||
|
||
exit 0 |
Oops, something went wrong.