Skip to content

Commit

Permalink
update comments from unoebauer
Browse files Browse the repository at this point in the history
  • Loading branch information
wkerzendorf committed Aug 30, 2018
1 parent 44460c5 commit 88edc63
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ env:
- SETUP_CMD='test'
- TEST_MODE='normal'
- REF_DATA_HOME=$HOME/tardis-refdata
- REF_DATA_GITHUBURL = https://github.com/tardis-sn/tardis-refdata.git
- MINICONDA_URL='http://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh'
- SAVE_COVERAGE=false
- GIT_LFS_SKIP_SMUDGE=1
Expand Down Expand Up @@ -67,7 +68,7 @@ before_install:
- source ci-helpers/install_miniconda.sh
- if [[ $TEST_MODE == 'spectrum' ]]; then conda install -c conda-forge git-lfs=2.2.1 -y; fi
- if [[ $TEST_MODE == 'spectrum' ]]; then git lfs install --skip-smudge; fi
- if [[ $TEST_MODE == 'spectrum' ]]; then git clone https://github.com/tardis-sn/tardis-refdata.git $REF_DATA_HOME; fi
- if [[ $TEST_MODE == 'spectrum' ]]; then git clone $REF_DATA_GITHUBURL $REF_DATA_HOME; fi
- if [[ $TEST_MODE == 'spectrum' ]]; then cd $REF_DATA_HOME; fi
# Use the following to get the ref-data from the master;
- if [[ $TEST_MODE == 'spectrum' ]]; then git fetch origin; fi
Expand Down
1 change: 1 addition & 0 deletions ci-helpers/fetch_reference_data.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env bash
git lfs install
if test -e $REF_DATA_HOME; then
echo "Ref data available"
Expand Down
1 change: 1 addition & 0 deletions ci-helpers/install_miniconda.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env bash
export PYTHONIOENCODING=UTF8
if test -e $HOME/miniconda/bin; then
echo "miniconda already installed.";
Expand Down
2 changes: 2 additions & 0 deletions ci-helpers/install_tardis_env.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#!/usr/bin/env bash
cd $TRAVIS_BUILD_DIR
if test -e $HOME/miniconda/envs/tardis; then
echo "TARDIS env already installed.";
# Also check for tardis_env27.yml change
else
conda env create -f tardis_env27.yml
fi
Expand Down

0 comments on commit 88edc63

Please sign in to comment.