-
Notifications
You must be signed in to change notification settings - Fork 24
ci: define job tag by a gitlab variable #333
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
Conversation
Reviewer's guide (collapsed on small PRs)Reviewer's GuideReplaces a hard-coded GitLab CI job tag with a dynamic tag sourced from the SHARED_RUNNER_TAG environment variable, allowing flexible runner assignment. Flow diagram for GitLab CI job tag selectionflowchart TD
Start["Start tf_tests job"] --> CheckVar["Check SHARED_RUNNER_TAG variable"]
CheckVar --> AssignTag["Assign job tag from SHARED_RUNNER_TAG"]
AssignTag --> RunnerSelect["GitLab selects runner matching tag"]
RunnerSelect --> RunJob["Run tf_tests job"]
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #333 +/- ##
==========================================
+ Coverage 89.08% 90.92% +1.84%
==========================================
Files 13 19 +6
Lines 980 1212 +232
==========================================
+ Hits 873 1102 +229
- Misses 107 110 +3 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Allow to set gitlab job tags by setting the gitlab CI/CD variable SHARED_RUNNER_TAG.
Summary by Sourcery
CI: