Skip to content

Commit

Permalink
travis: Adding simple CI run.
Browse files Browse the repository at this point in the history
Signed-off-by: Tim 'mithro' Ansell <tansell@google.com>
  • Loading branch information
mithro committed Jun 22, 2020
1 parent 14636ae commit 6c6515e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
language: minimal

before_install:
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O conda_installer.sh
- bash conda_installer.sh -b -p ~/conda && rm conda_installer.sh
- source ~/conda/etc/profile.d/conda.sh
- conda env create -f environment.yml
- conda activate sphinxcontrib-verilog-diagrams
- which yosys
- yosys -h
- yosys --version

script:
- conda activate sphinxcontrib-verilog-diagrams
- cd docs
- make html
3 changes: 2 additions & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ dependencies:
- python=3.7
- pip
- yosys
- graphviz # Needed for dot
- nodejs
- netlistsvg
- pip: # Packages installed from PyPI
- pip: # Packages installed from PyPI
- -r file:requirements.txt
- .

0 comments on commit 6c6515e

Please sign in to comment.