Changeset 38b8c48 in sasmodels
- Timestamp:
- Sep 7, 2017 11:44:06 AM (7 years ago)
- Branches:
- master, core_shell_microgels, costrafo411, magnetic_model, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
- Children:
- 83129f5
- Parents:
- 95468ca
- Files:
-
- 1 added
- 1 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
.travis.yml
r95468ca r38b8c48 1 1 language: python 2 3 sudo: false 4 2 sudo: false 5 3 matrix: 6 4 include: 7 - os: linux 8 env: 9 - PY=2.7 10 - os: linux 11 env: 12 - PY=3.6 13 - os: osx 14 language: generic 15 env: 16 - PY=2.7 17 - os: osx 18 language: generic 19 env: 20 - PY=3.5 21 22 # whitelist 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 23 19 branches: 24 20 only: 25 - master 26 21 - master 27 22 addons: 28 23 apt: 29 packages: 30 opencl-headers 31 24 packages: opencl-headers 32 25 before_install: 33 - openssl aes-256-cbc -K $encrypted_2459146b3814_key -iv $encrypted_2459146b3814_iv -in .travis/travis_rsa.enc -out .travis/travis_rsa -d 34 - echo $TRAVIS_OS_NAME 35 36 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then 37 wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; 38 fi; 39 - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then 40 wget https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -O miniconda.sh; 41 fi; 42 43 - bash miniconda.sh -b -p $HOME/miniconda 44 - export PATH="$HOME/miniconda/bin:$PATH" 45 - hash -r 46 - conda update --yes conda 47 48 # Useful for debugging any issues with conda 49 - conda info -a 50 51 - conda install --yes python=$PY numpy scipy cython mako cffi 52 53 # Not testing with opencl below, so don't need to install it 54 #- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then 55 # pip install pyopencl; 56 # fi; 57 26 - openssl aes-256-cbc -K $encrypted_2459146b3814_key -iv $encrypted_2459146b3814_iv 27 -in travis_rsa.enc -out .travis/travis_rsa -d 28 - echo $TRAVIS_OS_NAME 29 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh 30 -O miniconda.sh; fi; 31 - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then wget https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh 32 -O miniconda.sh; fi; 33 - bash miniconda.sh -b -p $HOME/miniconda 34 - export PATH="$HOME/miniconda/bin:$PATH" 35 - hash -r 36 - conda update --yes conda 37 - conda info -a 38 - conda install --yes python=$PY numpy scipy cython mako cffi 58 39 install: 59 - pip install bumps 60 - pip install unittest-xml-reporting 61 40 - pip install bumps 41 - pip install unittest-xml-reporting 62 42 script: 63 43 - python --version 64 44 - python -m sasmodels.model_test -v dll all 65 66 45 deploy: 67 46 skip_cleanup: true 68 47 provider: script 69 script: /bin/sh -xe ./deploy.sh48 script: "/bin/sh -xe ./deploy.sh" 70 49 on: 71 50 branch: master 72 73 51 notifications: 74 52 slack:
Note: See TracChangeset
for help on using the changeset viewer.