image: ubuntu stages: - tools - build tools-job: stage: tools - 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."