source: sasmodels/.travis.yml @ 83129f5

core_shell_microgelscostrafo411magnetic_modelticket-1257-vesicle-productticket_1156ticket_1265_superballticket_822_more_unit_tests
Last change on this file since 83129f5 was 83129f5, checked in by lewis, 7 years ago

Try to fix deploy

  • Property mode set to 100644
File size: 1.4 KB
Line 
1language: python
2sudo: false
3matrix:
4  include:
5  - os: linux
6    env:
7    - PY=2.7
8  - os: linux
9    env:
10    - PY=3.6
11  - os: osx
12    language: generic
13    env:
14    - PY=2.7
15  - os: osx
16    language: generic
17    env:
18    - PY=3.5
19branches:
20  only:
21  - master
22addons:
23  apt:
24    packages: opencl-headers
25before_install:
26- mkdir .travis
27- openssl aes-256-cbc -K $encrypted_2459146b3814_key -iv $encrypted_2459146b3814_iv
28  -in travis_rsa.enc -out .travis/travis_rsa -d
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
40install:
41- pip install bumps
42- pip install unittest-xml-reporting
43script:
44- python --version
45- python -m sasmodels.model_test -v dll all
46deploy:
47  skip_cleanup: true
48  provider: script
49  script: "/bin/sh -xe ./deploy.sh"
50  on:
51    branch: master
52notifications:
53  slack:
54    secure: xNAUeSu1/it/x9Q2CSg79aw1LLc7d6mLpcqSCTeKROp71RhkFf8VjJnJm/lEbKHNC8yj5H9UHrz5DmzwJzI+6oMt4NdEeS6WvGhwGY/wCt2IcJKxw0vj1DAU04qFMS041Khwclo6jIqm76DloinXvmvsS+K/nSyQkF7q4egSlwA=
Note: See TracBrowser for help on using the repository browser.