From 6a92bb3cdc0ac8d2c98d8e5bcea4940ec806def0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=99=E6=8C=AF=E5=AE=87?= <> Date: Fri, 7 Feb 2025 15:20:06 +0800 Subject: [PATCH] fix(tests): add missing commas in buildArtifacts definitions in Jenkinsfile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 孙振宇 <> --- first-class-pipeline/tests/Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/first-class-pipeline/tests/Jenkinsfile b/first-class-pipeline/tests/Jenkinsfile index c4619335..cfe8a27f 100644 --- a/first-class-pipeline/tests/Jenkinsfile +++ b/first-class-pipeline/tests/Jenkinsfile @@ -39,7 +39,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: true, // linter used to specify the code linter @@ -84,7 +84,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