From dd8bad9610f8a966ebd230938f012b3668e8cb4a Mon Sep 17 00:00:00 2001 From: Brendan Haines Date: Sun, 4 Jul 2021 00:52:26 +0000 Subject: [PATCH] Fix .gitlab-ci.yml file --- .gitlab-ci.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9dceea6..e7a3024 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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."