From: Tim 'mithro' Ansell Date: Sun, 4 Mar 2018 00:20:27 +0000 (-0800) Subject: Adding a travis config which tests the conda environment still works. X-Git-Tag: 24jan2021_ls180~1724^2~4 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e65c121adf1870a56cc083e87347884a6b7e4f2b;p=litex.git Adding a travis config which tests the conda environment still works. --- diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..822ff36b --- /dev/null +++ b/.travis.yml @@ -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