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