Skip to content

ci-operator: Remove uneccessary ARTIFACT_DIR touches #3585

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

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ tests:
upgrade: false
- artifact_dir: /tmp/artifacts
as: e2e-aws-operator
commands: ARTIFACT_DIR=/tmp/artifacts JUNIT_REPORT=1 make test-e2e
commands: JUNIT_REPORT=1 make test-e2e
openshift_installer_src:
cluster_profile: aws
- as: e2e-aws-image-registry
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ tests:
upgrade: false
- artifact_dir: /tmp/artifacts
as: e2e-aws-operator
commands: ARTIFACT_DIR=/tmp/artifacts JUNIT_REPORT=1 make test-e2e
commands: JUNIT_REPORT=1 make test-e2e
openshift_installer_src:
cluster_profile: aws
- as: e2e-aws-image-registry
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ tests:
upgrade: false
- artifact_dir: /tmp/artifacts
as: e2e-aws-operator
commands: ARTIFACT_DIR=/tmp/artifacts JUNIT_REPORT=1 make test-e2e
commands: JUNIT_REPORT=1 make test-e2e
openshift_installer_src:
cluster_profile: aws
- as: e2e-aws-image-registry
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ presubmits:
- name: JOB_NAME_SAFE
value: e2e-aws-operator
- name: TEST_COMMAND
value: ARTIFACT_DIR=/tmp/artifacts JUNIT_REPORT=1 make test-e2e
value: JUNIT_REPORT=1 make test-e2e
image: ci-operator:latest
imagePullPolicy: Always
name: ""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ presubmits:
- name: JOB_NAME_SAFE
value: e2e-aws-operator
- name: TEST_COMMAND
value: ARTIFACT_DIR=/tmp/artifacts JUNIT_REPORT=1 make test-e2e
value: JUNIT_REPORT=1 make test-e2e
image: ci-operator:latest
imagePullPolicy: Always
name: ""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ presubmits:
- name: JOB_NAME_SAFE
value: e2e-aws-operator
- name: TEST_COMMAND
value: ARTIFACT_DIR=/tmp/artifacts JUNIT_REPORT=1 make test-e2e
value: JUNIT_REPORT=1 make test-e2e
image: ci-operator:latest
imagePullPolicy: Always
name: ""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ objects:

# don't let clients impact the global kubeconfig
cp /tmp/shared/admin.kubeconfig /tmp/admin.kubeconfig
export ARTIFACT_DIR=/tmp/artifacts

# set up cloud-provider-specific env vars
if [[ "${CLUSTER_TYPE}" == "gcp" ]]; then
Expand Down