Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Clean up + disable redundant linting in interal ci #22

Merged
merged 1 commit into from
Nov 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 2 additions & 26 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@
# Author: Michael Rogenmoser <[email protected]>

variables:
VSIM: 'questa-2023.4 vsim'
BENDER: 'bender'
SPYGLASS: 'spyglass-2022.06 sg_shell'
VSIM: questa-2023.4 vsim
BENDER: bender

stages:
- sources
Expand All @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Loading