-
Notifications
You must be signed in to change notification settings - Fork 2.2k
ci: tag docker image with github run id #1679
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
Codecov Report
@@ Coverage Diff @@
## master #1679 +/- ##
==========================================
+ Coverage 84.14% 84.39% +0.24%
==========================================
Files 132 132
Lines 6831 6831
==========================================
+ Hits 5748 5765 +17
+ Misses 1083 1066 -17
Continue to review full report at Codecov.
|
Latency summaryCurrent PR yields:
Breakdown
Backed by latency-tracking. Further commits will update this comment. |
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.
makes sense. With this we handle build options differently.
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.
- we dont have
${{ matrix.build_option }}
, it is an empty value. This PR takes no effect. - use {{env.GITHUB_RUN_ID}}, Unique ID, Safe String, no escaping required
ci.yaml: jina:test-pip${{env.GITHUB_RUN_ID}}
python: uses=f'docker://jina:test-pip{os.environ[GITHUB_RUN_ID]}'
tests/__init__.py: os.environ['GITHUB_RUN_ID']=''
ref: https://docs.github.com/en/free-pro-team@latest/actions/reference/environment-variables
No description provided.