Changeset 83cd257 in sasview for .travis.yml
- Timestamp:
- Apr 4, 2017 4:12:57 PM (8 years ago)
- Branches:
- master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 4636f57
- Parents:
- 02ba2df
- git-author:
- Andrew Nelson <andyfaff@…> (03/26/17 06:18:25)
- git-committer:
- Andrew Nelson <andyfaff@…> (04/04/17 16:12:57)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
.travis.yml
r02ba2df r83cd257 4 4 5 5 matrix: 6 7 8 9 10 11 12 13 14 15 6 include: 7 - os: linux 8 env: 9 - PY=2.7 10 - NUMPYSPEC=numpy 11 - os: osx 12 language: generic 13 env: 14 - PY=2.7 15 - NUMPYSPEC=numpy 16 16 17 17 # whitelist … … 21 21 22 22 addons: 23 24 25 26 27 28 29 30 31 32 23 apt: 24 packages: 25 - opencl-headers 26 - fglrx 27 - libblas-dev 28 - libatlas-dev 29 - libatlas-base-dev 30 - liblapack-dev 31 - gfortran 32 - libhdf5-serial-dev 33 33 34 34 before_install: 35 - echo $TRAVIS_OS_NAME 36 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then 37 wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; 38 sudo apt-get update; sudo apt-get install python-pyopencl; 39 elif [[ "$TRAVIS_OS_NAME" == "osx" ]]; then 40 wget https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -O miniconda.sh; 41 fi 42 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then 43 "export DISPLAY=:99.0"; 44 "sh -e /etc/init.d/xvfb start"; 45 sleep 3; # give xvfb some time to start 46 fi 35 - echo $TRAVIS_OS_NAME 36 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then 37 wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; 38 sudo apt-get update; sudo apt-get install python-pyopencl; 39 elif [[ "$TRAVIS_OS_NAME" == "osx" ]]; then 40 wget https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -O miniconda.sh; 41 fi 47 42 48 49 50 51 43 - bash miniconda.sh -b -p $HOME/miniconda 44 - export PATH="$HOME/miniconda/bin:$PATH" 45 - hash -r 46 - conda update --yes conda 52 47 53 54 48 # Useful for debugging any issues with conda 49 - conda info -a 55 50 56 57 58 51 # could install other dependencies, but they're locked to specific 52 # versions in build/requirements.txt 53 - conda install --yes python=$PY $NUMPYSPEC scipy cython pylint wxpython 59 54 60 55 install: … … 62 57 - pip install matplotlib 63 58 59 before_script: 60 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then 61 "export DISPLAY=:99.0"; "sh -e /etc/init.d/xvfb start"; sleep 3; # give xvfb some time to start 62 fi 64 63 65 64 script:
Note: See TracChangeset
for help on using the changeset viewer.