Skip to content

Commit

Permalink
ci: use different variables for runner tags (#2673)
Browse files Browse the repository at this point in the history
This allows a more grained management of CI resources.
  • Loading branch information
cathales authored Dec 18, 2024
1 parent a4cec29 commit b5caf14
Showing 1 changed file with 6 additions and 2 deletions.
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

0 comments on commit b5caf14

Please sign in to comment.