-
Notifications
You must be signed in to change notification settings - Fork 207
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
chore: Swap out integration test in release pipeline #2981
Conversation
Signed-off-by: Sarah Christoff <28318173+schristoff@users.noreply.github.com>
Signed-off-by: Sarah Christoff <28318173+schristoff@users.noreply.github.com>
Signed-off-by: Sarah Christoff <28318173+schristoff@users.noreply.github.com>
Signed-off-by: Sarah Christoff <28318173+schristoff@users.noreply.github.com>
Signed-off-by: Sarah Christoff <28318173+schristoff@users.noreply.github.com>
Signed-off-by: schristoff <28318173+schristoff@users.noreply.github.com>
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.
Just a couple of question but nothing non blocking if this gets the release out.
registry: | ||
type: string | ||
required: false | ||
default: ghcr.io |
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.
Does this need to be scoped to ghcr.io/getporter/porter ?
@@ -110,7 +137,7 @@ jobs: | |||
- name: Docker Login | |||
uses: docker/login-action@v3.0.0 | |||
with: | |||
registry: ghcr.io | |||
registry: ${{inputs.registry}} |
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.
Do we need to build the docker images in the integration tests? Should this be another workflow after we see that the tests are passing?
copy_integration_test: | ||
uses: getporter/porter/.github/workflows/integ-reuseable-workflow.yml@main | ||
with: | ||
test_name: copy_test | ||
test_name: copy_tests | ||
registry: ${{inputs.registry}} |
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.
Is this necessary for each stage of the pipeline if it is not using it?
@@ -30,7 +33,7 @@ jobs: | |||
- name: Docker Login | |||
uses: docker/login-action@v3.0.0 | |||
with: | |||
registry: ghcr.io | |||
registry: ${{inputs.registry}} |
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.
Same thing here, do we need to log in to the registry to build the images?
@@ -6,6 +6,9 @@ on: | |||
test_name: | |||
type: string | |||
required: false | |||
registry: | |||
type: string | |||
required: false |
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.
If this is not required, should we set a default?
No description provided.