-
Notifications
You must be signed in to change notification settings - Fork 40
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
Fix prow execution #50
Conversation
2b7efcb
to
132fd42
Compare
Signed-off-by: Victor Morales <v.morales@samsung.com>
132fd42
to
9c6d938
Compare
skip_report: false | ||
decorate: true | ||
cluster: default | ||
extra_refs: |
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.
why are we removing this?
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.
That action is redundant, we're cloning the repo during the execution of gce_run.sh
script.
@@ -17,15 +17,10 @@ presubmits: | |||
- name: e2e | |||
annotations: | |||
labels: | |||
run_if_changed: 'E2E_instance.txt' | |||
run_if_changed: '^e2e/' |
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 as to what the interpretation of ^e2e/
is?
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.
My understanding is that this job will be triggered on any change under the e2e
folder
/lgtm |
/lgtm |
@aravind254 would appreciate a review and lgtm when you get a chance, Thanks |
/retest |
/lgtm |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: electrocucaracha, radoslawc, vjayaramrh The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
The
gce_run.sh
bash script is executed from the e2e folder, which causes some issues during the prow execution. This change modifies that behavior to run it from its own folder. This also deprecates the usage ofE2E_instance.txt
file.