From 157d054e33031e0548009ab01dd344472b4ff853 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Mon, 11 May 2020 11:04:11 +0200 Subject: [PATCH] jenkins: allow combined jobs to copy artifacts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- ci/Jenkinsfile.android | 2 ++ ci/Jenkinsfile.ios | 2 ++ ci/Jenkinsfile.linux | 2 ++ ci/Jenkinsfile.macos | 2 ++ ci/Jenkinsfile.windows | 2 ++ 5 files changed, 10 insertions(+) diff --git a/ci/Jenkinsfile.android b/ci/Jenkinsfile.android index b7c8e24ea3..f9bfa2ba58 100644 --- a/ci/Jenkinsfile.android +++ b/ci/Jenkinsfile.android @@ -13,6 +13,8 @@ pipeline { daysToKeepStr: '20', artifactNumToKeepStr: '10', )) + /* Allows combined build to copy */ + copyArtifactPermission('/status-react/*') } parameters { diff --git a/ci/Jenkinsfile.ios b/ci/Jenkinsfile.ios index e098ca50aa..b694bf602a 100644 --- a/ci/Jenkinsfile.ios +++ b/ci/Jenkinsfile.ios @@ -21,6 +21,8 @@ pipeline { daysToKeepStr: '20', artifactNumToKeepStr: '10', )) + /* Allows combined build to copy */ + copyArtifactPermission('/status-react/*') } environment { diff --git a/ci/Jenkinsfile.linux b/ci/Jenkinsfile.linux index 2541df42f5..a7dbc05544 100644 --- a/ci/Jenkinsfile.linux +++ b/ci/Jenkinsfile.linux @@ -21,6 +21,8 @@ pipeline { daysToKeepStr: '20', artifactNumToKeepStr: '10', )) + /* Allows combined build to copy */ + copyArtifactPermission('/status-react/*') } /** diff --git a/ci/Jenkinsfile.macos b/ci/Jenkinsfile.macos index db78a2b6f0..e9d36209fa 100644 --- a/ci/Jenkinsfile.macos +++ b/ci/Jenkinsfile.macos @@ -21,6 +21,8 @@ pipeline { daysToKeepStr: '20', artifactNumToKeepStr: '10', )) + /* Allows combined build to copy */ + copyArtifactPermission('/status-react/*') } environment { diff --git a/ci/Jenkinsfile.windows b/ci/Jenkinsfile.windows index aca8010483..c0b4c7dae7 100644 --- a/ci/Jenkinsfile.windows +++ b/ci/Jenkinsfile.windows @@ -21,6 +21,8 @@ pipeline { daysToKeepStr: '20', artifactNumToKeepStr: '10', )) + /* Allows combined build to copy */ + copyArtifactPermission('/status-react/*') } /**