From a832815ac5d9c5b4d7f0644052cca331ce7a256f Mon Sep 17 00:00:00 2001 From: Julian Mutter Date: Sat, 25 Oct 2025 23:17:30 +0200 Subject: [PATCH] jenkins: do not remove wasm binaries from android since parallel build fails otherwise --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 777773c..e9d602c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -19,7 +19,7 @@ pipeline { stages { stage('Build') { steps { - sh 'devenv shell dart run pdfrx:remove_wasm_modules' + // sh 'devenv shell dart run pdfrx:remove_wasm_modules' sh 'devenv shell flutter build apk' } } @@ -76,6 +76,7 @@ pipeline { stages { stage('Build') { steps { + // sh 'devenv shell dart run pdfrx:remove_wasm_modules --revert' sh 'devenv shell flutter build web --release' sh 'docker build -t harbor.julian-mutter.de/sheetless/sheetless-frontend .' }