software/libbase/spisdcard: add delay to goidle loop
[litex.git] / .travis.yml
index 6d29d7e70d7b82a507329a84fb889a44d0841db5..eeddc7c78abc17f37249110de830e0884b44e393 100644 (file)
@@ -1,49 +1,16 @@
 language: python
-python:
-  - "3.5"
+dist: Xenial
+python: "3.6"
 
-env:
-  global:
-    - PATH=$HOME/miniconda/bin:$PATH
-
-before_install:
-  # Install Miniconda
-  - wget https://raw.githubusercontent.com/m-labs/artiq/master/.travis/get-anaconda.sh
-  - chmod +x get-anaconda.sh
-  - ./get-anaconda.sh
-  - source $HOME/miniconda/bin/activate py35
-  - conda install anaconda-client numpydoc
 install:
-  # Install iverilog package.
-  # - "sudo add-apt-repository -y ppa:mithro/iverilog-backport"
-  # - "sudo apt-get update"
-  # - "sudo apt-get install iverilog"
-  # - "iverilog -v; true"
-  # Build the vpi module.
-  # - "(cd vpi; make; sudo make install)"
-  # Install verilator package
-  - "sudo apt-get install verilator"
-  - "verilator --version; true"
-  # Build and install Migen conda package
-  - "conda build conda/migen"
-  - "conda install migen --use-local"
-
-script:
-  # Run tests
-  - "python setup.py test"
-  # Generate HTML documentation
-  - "make -C doc html"
+  # Get Migen / LiteX / Cores
+  - wget https://raw.githubusercontent.com/enjoy-digital/litex/master/litex_setup.py
+  - python3 litex_setup.py init install
 
-after_success:
-  # Upload Migen conda package to binstar
-  - anaconda login --hostname $(hostname) --username $binstar_login --password $binstar_password
-  - anaconda upload --user $binstar_login --channel dev --force $HOME/miniconda/conda-bld/linux-64/migen-*.tar.bz2
+before_script:
+  # Get RISC-V toolchain
+  - wget https://static.dev.sifive.com/dev-tools/riscv64-unknown-elf-gcc-8.1.0-2019.01.0-x86_64-linux-ubuntu14.tar.gz
+  - tar -xvf riscv64-unknown-elf-gcc-8.1.0-2019.01.0-x86_64-linux-ubuntu14.tar.gz
+  - export PATH=$PATH:$PWD/riscv64-unknown-elf-gcc-8.1.0-2019.01.0-x86_64-linux-ubuntu14/bin/
 
-notifications:
-  email: false
-  irc:
-    channels:
-      - chat.freenode.net#m-labs
-    template:
-      - "%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message}"
-      - "Build details : %{build_url}"
+script: python setup.py test