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