ice40/.gitlab-ci.yml

14 lines
355 B
YAML
Raw Normal View History

2021-09-09 01:13:32 -06:00
image: ubuntu
stages:
- test
testbench: # This job runs in the test stage.
stage: test # It only starts when the job in the build stage completes successfully.
script:
- echo "Installing dependencies..."
2021-09-09 01:15:18 -06:00
- apt update && apt install -y make iverilog yosys verilator gtkwave
2021-09-09 01:13:32 -06:00
- echo "Running unit tests..."
- make
2021-09-09 01:14:12 -06:00
- make sim