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: use different variables for runner tags #2673

Merged
merged 2 commits into from
Dec 18, 2024
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
8 changes: 6 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ variables:
DV_TARGET: cv32a65x

default:
tags: [$TAGS_RUNNER]
tags: [$TAGS_RUNNER_SIMU]
artifacts:
when: always
paths:
Expand All @@ -72,6 +72,7 @@ stages:

.setup_job:
stage: setup
tags: [$TAGS_RUNNER]
variables:
GIT_SUBMODULE_STRATEGY: none
rules: &on_dev
Expand Down Expand Up @@ -263,6 +264,7 @@ cvxif-regression:
asic-synthesis:
extends:
- .synthesis_test
tags: [$TAGS_RUNNER_SYNTH]
variables:
DASHBOARD_JOB_TITLE: "ASIC Synthesis $DV_TARGET"
DASHBOARD_JOB_DESCRIPTION: "Synthesis indicator with specific Techno"
Expand Down Expand Up @@ -569,7 +571,7 @@ simu-gate:
fpga-boot:
extends:
- .backend_test
tags: [fpga,shell]
tags: [$TAGS_RUNNER_FPGA]
needs:
- build_tools
- fpga-build
Expand Down Expand Up @@ -614,6 +616,7 @@ code_coverage-report:

check gitlab jobs status:
stage: find failures
tags: [$TAGS_RUNNER]
rules:
- if: $DASHBOARD_URL && $CI_KIND != "none"
when: on_failure
Expand All @@ -630,6 +633,7 @@ check gitlab jobs status:

merge reports:
stage: report
tags: [$TAGS_RUNNER]
variables:
GIT_SUBMODULE_STRATEGY: none
rules:
Expand Down
Loading