cpu/.gitlab-ci.yml

14 lines
264 B
YAML

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