Fix .gitlab-ci.yml file

This commit is contained in:
Brendan Haines 2021-07-04 00:52:26 +00:00
parent bd6c60fe92
commit dd8bad9610

View File

@ -1,19 +1,13 @@
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 "Installing dependencies..."
- apt update && apt install -y make iverilog gcc-8-riscv64-linux-gnu
- echo "Compiling the code..."
- make sim
- echo "Compile complete."