-
Notifications
You must be signed in to change notification settings - Fork 100
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
Removing unnecessary env vars from the LR workflow #8725
base: main
Are you sure you want to change the base?
Conversation
980a18d
to
0d19dd3
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #8725 +/- ##
==========================================
+ Coverage 59.88% 59.90% +0.01%
==========================================
Files 596 596
Lines 40512 40512
==========================================
+ Hits 24261 24267 +6
+ Misses 14423 14419 -4
+ Partials 1828 1826 -2 ☔ View full report in Codecov by Sentry. |
echo "RAD_CLI_ARTIFACT_NAME=rad_cli_linux_amd64" >> $GITHUB_OUTPUT | ||
echo "PR_NUMBER=${{ env.PR_NUMBER }}" >> $GITHUB_OUTPUT | ||
echo "BICEP_RECIPE_TAG_VERSION=pr-${UNIQUE_ID}" >> $GITHUB_OUTPUT # Add this line |
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.
nit: we do not need " # Add this line"
Signed-off-by: ytimocin <[email protected]>
0d19dd3
to
c446c7a
Compare
# Container registry for storing container images | ||
CONTAINER_REGISTRY: ghcr.io/radius-project/dev | ||
# Container registry for storing Bicep recipe artifacts | ||
BICEP_RECIPE_REGISTRY: ghcr.io/radius-project/dev | ||
# The radius functional test timeout | ||
FUNCTIONALTEST_TIMEOUT: 60m | ||
TEST_TIMEOUT: 60m |
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.
Curious why are we changing this?
@@ -110,16 +103,17 @@ jobs: | |||
SKIP_BUILD: ${{ steps.skip-build.outputs.SKIP_BUILD }} | |||
REL_VERSION: ${{ steps.gen-id.outputs.REL_VERSION }} | |||
UNIQUE_ID: ${{ steps.gen-id.outputs.UNIQUE_ID }} | |||
PR_NUMBER: ${{ steps.gen-id.outputs.PR_NUMBER }} |
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.
Was this not being used?
echo "RAD_CLI_ARTIFACT_NAME=rad_cli_linux_amd64" >> $GITHUB_OUTPUT | ||
echo "PR_NUMBER=${{ env.PR_NUMBER }}" >> $GITHUB_OUTPUT | ||
echo "BICEP_RECIPE_TAG_VERSION=pr-${UNIQUE_ID}" >> $GITHUB_OUTPUT |
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.
What's the motivation to move it to uuid instead of release version?
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.
Are some of these changes applicable to the functional tests workflow as well?
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.
Was there a testing issue in creating this PR from a fork?
Description
Removing unnecessary environment variables from the LR workflow for cleaning up some of the code.
Type of change
Contributor checklist
Please verify that the PR meets the following requirements, where applicable: