From 4f02747cbce639d122e6a3e8e07e863d2f1bba3d Mon Sep 17 00:00:00 2001 From: egelhaus <156946629+egelhaus@users.noreply.github.com> Date: Sat, 12 Apr 2025 16:48:50 +0200 Subject: [PATCH] Deactivate NodeJS Cache --- Jenkinsfile | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 204a4dae..3111f18d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -15,13 +15,6 @@ pipeline { excludes: '', includes: '**/*', path: "./.nx/cache" - ), - arbitraryFileCache( - cacheName: 'NodeJS', // Added a cache name for better clarity - cacheValidityDecidingFile: '', - excludes: '', - includes: '**/*', - path: "./node_modules" // Use the HOME environment variable for home directory ) ], defaultBranch: 'dev', maxCacheSize: 256000, skipSave: true) } @@ -72,13 +65,6 @@ pipeline { excludes: '', includes: '**/*', path: "./.nx/cache" - ), - arbitraryFileCache( - cacheName: 'NodeJS', // Added a cache name for better clarity - cacheValidityDecidingFile: '', - excludes: '', - includes: '**/*', - path: "./node_modules" // Use the HOME environment variable for home directory ) ], defaultBranch: 'dev', maxCacheSize: 256000, skipRestore: true) }