Skip to content

Commit

Permalink
Merge pull request #17424 from spowelljr/fixUpload
Browse files Browse the repository at this point in the history
CI: Fix name of uploaded job
  • Loading branch information
medyagh authored Oct 13, 2023
2 parents 79e8c3f + 17f3b95 commit 697bc9c
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions hack/jenkins/upload_integration_report.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,7 @@

set -x

# upload results to GCS
UPSTREAM_JOB=${UPSTREAM_JOB%"_integration"}

JOB_GCS_BUCKET="minikube-builds/logs/${MINIKUBE_LOCATION}/${ROOT_JOB_ID}/${UPSTREAM_JOB}"
JOB_GCS_BUCKET="minikube-builds/logs/${MINIKUBE_LOCATION}/${ROOT_JOB_ID}/${UPSTREAM_JOB}_integration"

ARTIFACTS=artifacts/test_reports

Expand All @@ -51,5 +48,5 @@ gsutil -qm cp "${SUMMARY_OUT}" "gs://${JOB_GCS_BUCKET}_summary.json" || true
if [ "$MINIKUBE_LOCATION" = "master" ]
then
./installers/check_install_gopogh.sh
gopogh -in "${JSON_OUT}" -out_html "${HTML_OUT}" -name "${JOB_NAME}" -pr "${MINIKUBE_LOCATION}" -repo github.com/kubernetes/minikube/ -details "${COMMIT}:$(date +%Y-%m-%d):${ROOT_JOB_ID}" -db_backend "${GOPOGH_DB_BACKEND}" -db_host "${GOPOGH_DB_HOST}" -db_path "${GOPOGH_DB_PATH}" -use_cloudsql -use_iam_auth
gopogh -in "${JSON_OUT}" -out_html "${HTML_OUT}" -name "${UPSTREAM_JOB}" -pr "${MINIKUBE_LOCATION}" -repo github.com/kubernetes/minikube/ -details "${COMMIT}:$(date +%Y-%m-%d):${ROOT_JOB_ID}" -db_backend "${GOPOGH_DB_BACKEND}" -db_host "${GOPOGH_DB_HOST}" -db_path "${GOPOGH_DB_PATH}" -use_cloudsql -use_iam_auth
fi

0 comments on commit 697bc9c

Please sign in to comment.