mirror of
https://gitlab.com/brendanhaines/cpu.git
synced 2024-11-09 21:14:57 -07:00
13 lines
249 B
YAML
13 lines
249 B
YAML
image: ubuntu
|
|
|
|
stages:
|
|
- simulate
|
|
|
|
testbench:
|
|
stage: simulate
|
|
script:
|
|
- echo "Installing dependencies..."
|
|
- apt update && apt install -y make iverilog gcc-8-riscv64-linux-gnu
|
|
- echo "Running testbenches..."
|
|
- make -C testbench
|