Skip to content

Commit 42b7ccc

Browse files
committed
Once again use compiled version of RMG-Py in travis build
This is temporary because new changes to RMG-Py master are needed. When these changes are added to the new binary, we may once again use the binary for travis builds
1 parent ac4f257 commit 42b7ccc

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.travis.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,18 @@ before_install:
2222
- conda update --yes conda
2323
- openssl aes-256-cbc -K $encrypted_02f40ca58e32_key -iv $encrypted_02f40ca58e32_iv -in deploy_key.enc -out deploy_key -d
2424
- cd ..
25+
# this is the RMG-database project, so need to fetch RMG-Py
26+
- git clone https://github.com/ReactionMechanismGenerator/RMG-Py.git
27+
# Add RMG-Py to PYTHONPATH
28+
- export PYTHONPATH=$TRAVIS_BUILD_DIR/RMG-Py:$PYTHONPATH
29+
- cd RMG-Py
2530

2631
install:
27-
- conda create -c rmg --name rmg_env rmg=1.0.2 -y
32+
- conda env create
2833
- source activate rmg_env
29-
- cd $TRAVIS_BUILD_DIR
34+
- make
3035

3136
script:
3237
- make test-database
38+
- cd $TRAVIS_BUILD_DIR
3339
- bash ./deploy.sh

0 commit comments

Comments
 (0)