From bacc1ff8ed263ef163c844872a65fd392248ba1d Mon Sep 17 00:00:00 2001 From: tersec Date: Thu, 14 Apr 2022 15:56:05 +0000 Subject: [PATCH] remove Jenkins caching (#3594) --- Jenkinsfile | 22 +++++++++------------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f9840fcd3..4109e153e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -20,19 +20,15 @@ def runStages(nodeDir) { sh "git submodule update --init --recursive" } - cache(maxCacheSize: 250, caches: [ - [$class: "ArbitraryFileCache", excludes: "", includes: "**/*", path: "${WORKSPACE}/${nodeDir}/jsonTestsCache"] - ]) { - stage("Preparations") { - sh """#!/bin/bash - set -e - # macOS shows scary warnings if there are old libraries and object files laying around - make clean - # to allow the following parallel stages - make -j${env.NPROC} QUICK_AND_DIRTY_COMPILER=1 update - ./scripts/setup_scenarios.sh jsonTestsCache - """ - } + stage("Preparations") { + sh """#!/bin/bash + set -e + # macOS shows scary warnings if there are old libraries and object files laying around + make clean + # to allow the following parallel stages + make -j${env.NPROC} QUICK_AND_DIRTY_COMPILER=1 update + ./scripts/setup_scenarios.sh + """ } stage("Tools") {