From 27c7777f7912dcbbb2b5b1b44c523ecef179ee10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Mattm=C3=BCller?= Date: Tue, 25 Apr 2023 16:12:31 +0200 Subject: [PATCH] jobs/common: removed settings for sstate- and equiv server MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit currently the environment is unclear and is set to ToDo Signed-off-by: Marc Mattmüller --- jobs/Jenkinsfile_Common | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/jobs/Jenkinsfile_Common b/jobs/Jenkinsfile_Common index d1392dd..f08fac5 100644 --- a/jobs/Jenkinsfile_Common +++ b/jobs/Jenkinsfile_Common @@ -111,10 +111,12 @@ def getDownloadDirConfig() { } //----------------------------------------------------------------------------- def getSstateMirrorConfig() { + // ToDo: set the sstate-cache mirror and the HashEquivalance Server def mirrorCfg = "SSTATE_MIRRORS = \"file://.* ${env.SSTATE_STORAGE_URL}/PATH\"" def signatureHdl = "BB_SIGNATURE_HANDLER = \"OEEquivHash\"" def hashSrv = "BB_HASHSERVE = \"${env.HASHSERVER}\"" - return "${signatureHdl}\n${hashSrv}\n${mirrorCfg}" + //return "${signatureHdl}\n${hashSrv}\n${mirrorCfg}" + return "" } //----------------------------------------------------------------------------- def getArtifactConfig() {