From a3aba60b6e7eb96ebc447e5ec51fe3225e69b0be Mon Sep 17 00:00:00 2001 From: Tim Fischer Date: Fri, 24 Nov 2023 23:37:23 +0100 Subject: [PATCH] ci: Clean up + disable double linting in interal ci --- .gitlab-ci.yml | 28 ++-------------------------- 1 file changed, 2 insertions(+), 26 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a359dbc1..dd0d3a9c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,9 +5,8 @@ # Author: Michael Rogenmoser variables: - VSIM: 'questa-2023.4 vsim' - BENDER: 'bender' - SPYGLASS: 'spyglass-2022.06 sg_shell' + VSIM: questa-2023.4 vsim + BENDER: bender stages: - sources @@ -22,10 +21,6 @@ collect-bender-sources: paths: - .bender/ - Bender.lock - rules: - - if: '$CI_COMMIT_REF_NAME =~ /noci$/' - when: manual - - when: always compile-vsim: stage: build @@ -39,10 +34,6 @@ compile-vsim: - scripts/ - work/ - modelsim.ini - rules: - - if: '$CI_COMMIT_REF_NAME =~ /noci$/' - when: manual - - when: always run-vsim: stage: run @@ -91,18 +82,3 @@ morty: - morty -f source_list.txt needs: - collect-bender-sources - rules: - - if: '$CI_COMMIT_REF_NAME =~ /noci$/' - when: manual - - when: always - -verible-lint: - stage: build - script: - - verible-verilog-lint src/*.sv src/synth/*.sv include/floo_noc/*.svh --lint_fatal --waiver_files util/verible.waiver - needs: - - collect-bender-sources - rules: - - if: '$CI_COMMIT_REF_NAME =~ /noci$/' - when: manual - - when: always