cpu/.gitlab-ci.yml

20 lines
329 B
YAML

image: ubuntu
stages:
- tools
- build
tools-job:
stage: tools
script:
- echo "Installing dependencies..."
- apt update && apt install -y make iverilog gcc-8-riscv64-linux-gnu
- echo "Done"
build-job:
stage: build
script:
- echo "Compiling the code..."
- make sim
- echo "Compile complete."