source: sasmodels/.travis.yml @ 2d09df1

core_shell_microgelsmagnetic_modelticket-1257-vesicle-productticket_1156ticket_1265_superballticket_822_more_unit_tests
Last change on this file since 2d09df1 was 2d09df1, checked in by Paul Kienzle <pkienzle@…>, 6 years ago

attempt to fix travis deploy to marketplace; also restrict deploy to one build

  • Property mode set to 100644
File size: 1.6 KB
RevLine 
[8b81801]1language: python
[38b8c48]2sudo: false
[1c83260]3matrix:
4  include:
[38b8c48]5  - os: linux
6    env:
7    - PY=2.7
[2d09df1]8    - DEPLOY=True
[38b8c48]9  - os: linux
10    env:
11    - PY=3.6
12  - os: osx
13    language: generic
14    env:
15    - PY=2.7
16  - os: osx
17    language: generic
18    env:
19    - PY=3.5
[8b81801]20branches:
21  only:
[38b8c48]22  - master
[1c83260]23addons:
24  apt:
[38b8c48]25    packages: opencl-headers
[5304138]26before_install:
[ce8c388]27- if [[ $encrypted_cb04388797b6_iv ]]; then openssl aes-256-cbc -K $encrypted_cb04388797b6_key -iv $encrypted_cb04388797b6_iv
28  -in .travis/travis_rsa.enc -out .travis/travis_rsa -d; fi;
[38b8c48]29- echo $TRAVIS_OS_NAME
30- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
31  -O miniconda.sh; fi;
32- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then wget https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh
33  -O miniconda.sh; fi;
34- bash miniconda.sh -b -p $HOME/miniconda
35- export PATH="$HOME/miniconda/bin:$PATH"
36- hash -r
37- conda update --yes conda
38- conda info -a
39- conda install --yes python=$PY numpy scipy cython mako cffi
[8b81801]40install:
[38b8c48]41- pip install bumps
42- pip install unittest-xml-reporting
[8b81801]43script:
[b419c2d]44- python --version
45- python -m sasmodels.model_test -v dll all
[947a61e]46before_deploy:
47- echo -e "Host danse.chem.utk.edu\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
[eb77f9c]48deploy:
[f246d6b]49  skip_cleanup: true
50  provider: script
51  script: "/bin/sh -ex ./deploy.sh"
52  on:
53    branch: master
[2d09df1]54    condition: $DEPLOY = True
[01e551a]55notifications:
56  slack:
57    secure: xNAUeSu1/it/x9Q2CSg79aw1LLc7d6mLpcqSCTeKROp71RhkFf8VjJnJm/lEbKHNC8yj5H9UHrz5DmzwJzI+6oMt4NdEeS6WvGhwGY/wCt2IcJKxw0vj1DAU04qFMS041Khwclo6jIqm76DloinXvmvsS+K/nSyQkF7q4egSlwA=
Note: See TracBrowser for help on using the repository browser.