Update Jenkinsfile

This commit is contained in:
egelhaus 2025-04-09 17:40:28 +02:00 committed by GitHub
parent 4c8f9cf9c8
commit c769483f25
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

@ -12,14 +12,14 @@ pipeline {
cacheValidityDecidingFile: '',
excludes: '',
includes: '**/*',
path: "./.next/cache"
path: "./.nx/cache"
),
arbitraryFileCache(
cacheName: 'NPM', // Added a cache name for better clarity
cacheName: 'NodeJS', // Added a cache name for better clarity
cacheValidityDecidingFile: '',
excludes: '',
includes: '**/*',
path: "~/.npm" // Use the HOME environment variable for home directory
path: "./node_modules" // Use the HOME environment variable for home directory
)
], defaultBranch: 'dev', maxCacheSize: 256000)
}