Update .gitlab-ci.yml file

This commit is contained in:
Brendan Haines 2021-07-02 08:22:30 +00:00
parent f2ac820e7e
commit fd743338c9

View File

@ -21,6 +21,8 @@ stages: # List of stages for jobs, and their order of execution
build-job: # This job runs in the build stage, which runs first.
stage: build
script:
- echo "Installing dependencies"
- apt install iverilog gcc-8-riscv64-linux-gnu
- echo "Compiling the code..."
- make
- echo "Compile complete."