cop-web/Jenkinsfile

9 lines
252 B
Plaintext
Raw Permalink Normal View History

2024-05-30 09:01:41 +00:00
@Library('jgpl') _
webPipeline([
onBuildInstallShell:{->
return """
pnpm install --no-prefer-frozen-lockfile
2024-05-30 09:06:29 +00:00
pnpm install url-loader
2024-05-30 09:01:41 +00:00
pnpm run build || echo 'Ignore build error !!!'
"""}
])