stop caching benchmarking Jenkins CI task (#3599)

This commit is contained in:
tersec 2022-04-15 09:07:14 +00:00 committed by GitHub
parent d0dbc4a8f9
commit 1f7e6c7342
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 9 deletions

View File

@ -18,15 +18,11 @@ node("metal") {
sh "git submodule update --init --recursive"
}
cache(maxCacheSize: 250, caches: [
[$class: "ArbitraryFileCache", excludes: "", includes: "**/*", path: "${WORKSPACE}/vendor/nimbus-build-system/vendor/Nim/bin"],
]) {
stage("Build") {
sh """#!/bin/bash
set -e
make -j${env.NPROC} update # to allow a newer Nim version to be detected
"""
}
stage("Build") {
sh """#!/bin/bash
set -e
make -j${env.NPROC} update # to allow a newer Nim version to be detected
"""
}
stage("Benchmark") {