cop-web/Jenkinsfile

10 lines
379 B
Plaintext
Raw Permalink Normal View History

2024-03-14 03:36:22 +00:00
@Library('jgpl') _
webPipeline([
onBuildInstallShell:{->
return """
npm install url-loader --userconfig ${env.NPM_CONFIG_USERCONFIG} --no-package-lock
pnpm install -no-frozen-lockfile
pnpm run build || echo 'Ignore build error !!!'
"""
},
])