You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: build/integration/openvscode-server/Jenkinsfile
+12-10Lines changed: 12 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -31,16 +31,18 @@ pipeline {
31
31
steps {
32
32
script {
33
33
nodejs(nodeJSInstallationName: '22.11.0') {
34
-
sh 'npm run update:axonivy:next'
35
-
sh 'npm install'
36
-
sh 'npm run build:production'
37
-
sh 'npm run download:engine '+ params.engineDownloadUrl
38
-
sh 'wget https://github.com/gitpod-io/openvscode-server/releases/download/openvscode-server-${params.openvscodeVersion}/openvscode-server-${params.openvscodeVersion}-linux-x64.tar.gz'
39
-
sh 'tar -xzf openvscode-server-${params.openvscodeVersion}-linux-x64.tar.gz'
40
-
sh 'cp -r extension/. openvscode-server-${params.openvscodeVersion}-linux-x64/extensions/extension'
41
-
sh 'nohup extension/AxonIvyEngine/bin/AxonIvyEngine &'
42
-
sh 'nohup openvscode-server-${params.openvscodeVersion}-linux-x64/bin/openvscode-server --host 0.0.0.0 --without-connection-token --disable-workspace-trust --skip-welcome --skip-release-notes &'
43
-
sh 'npx playwright install --with-deps chromium'
34
+
sh """
35
+
npm run update:axonivy:next
36
+
npm install
37
+
npm run build:production
38
+
npm run download:engine ${params.engineDownloadUrl}
0 commit comments