Adding a travis config which tests the conda environment still works.

This commit is contained in:
Tim 'mithro' Ansell 2018-03-03 16:20:27 -08:00
parent 795e82858f
commit e65c121adf
1 changed files with 14 additions and 0 deletions

14
.travis.yml Normal file
View File

@ -0,0 +1,14 @@
language: python
python:
- "3.6"
install:
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
script:
- conda env create -f environment.yml
- source activate litex