From 449de1ac95569225c877618d4fd5aac9cf7edc62 Mon Sep 17 00:00:00 2001 From: Solomon Shorser Date: Fri, 23 Apr 2021 14:07:50 -0400 Subject: [PATCH] the file will end up in "logs" The underlying code that gets called (utils.cleanUpAndArchiveBuildFiles) only puts files into the `logs` directory, so there's no point in trying to retrieve it from `reports`. That was probably a hold-over from before utils.cleanUpAndArchiveBuildFiles was completed. --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 71654f0..bdd503d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -159,7 +159,7 @@ pipeline{ def previousReleaseVersion = utils.getPreviousReleaseVersion() def prevGraphQAFileName = "GraphQA_Summary_v${previousReleaseVersion}.csv" def currentGraphQAFileName = "GraphQA_Summary_v${releaseVersion}.csv" - def s3PathPrevGraphQA = "${env.S3_RELEASE_DIRECTORY_URL}/${previousReleaseVersion}/orthoinference/reports/${prevGraphQAFileName}.gz" + def s3PathPrevGraphQA = "${env.S3_RELEASE_DIRECTORY_URL}/${previousReleaseVersion}/orthoinference/logs/${prevGraphQAFileName}.gz" // Get previous release graph-qa output sh "aws s3 cp ${s3PathPrevGraphQA} ." sh "gunzip ${prevGraphQAFileName}.gz"