diff --git a/first-class-pipeline/tests/Jenkinsfile b/first-class-pipeline/tests/Jenkinsfile index 7d8b0dd8..8071f451 100644 --- a/first-class-pipeline/tests/Jenkinsfile +++ b/first-class-pipeline/tests/Jenkinsfile @@ -42,7 +42,7 @@ executeFreeleapsPipeline { // buildCommand used to specify the build command of the component buildCommand: 'npm run build', // buildArtifacts used to specify the build artifacts that needs to be stores and shares between components - buildArtifacts: ['dist'], + buildArtifacts: ['dist/**'], // lintEnabled used to specify whether to enable code lint lintEnabled: false, // linter used to specify the code linter @@ -91,7 +91,7 @@ executeFreeleapsPipeline { // buildAgentImage used to specify the build environment container image buildAgentImage: 'python:3.8-slim-buster', // buildArtifacts used to specify the build artifacts that needs to be stores and shares between components - buildArtifacts: ['.'], + buildArtifacts: ['./**'], // buildCacheEnabled used to specify whether to enable build dependencies cache buildCacheEnabled: true, // buildCommand used to specify the build command of the component