diff --git a/Jenkinsfile b/Jenkinsfile index 82c2d73..75ff73c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -26,10 +26,6 @@ pipeline { dart pub get dart doc - mkdir -p out - dart compile exe -o out/dbikc bin/dbikc.dart - dart compile exe -o out/mkfsreport bin/mkfsreport.dart - tar -cvf docs.tgz doc/api/* flutter pub publish -f --skip-validation || true @@ -40,28 +36,6 @@ pipeline { post { always { archiveArtifacts artifacts: "*.tgz", fingerprint: true - archiveArtifacts artifacts: "out/*", fingerprint: true - deleteDir() - } - } - } - - stage('Build on Windows') { - agent { - label 'windows' - } - steps { - script { - bat "dart pub get" - bat "mkdir out" - bat "dart compile exe -o out/dbikc.exe bin/dbikc.dart" - bat "dart compile exe -o out/mkfsreport.exe bin/mkfsreport.dart" - } - } - - post { - always { - archiveArtifacts artifacts: "out\\*.exe", fingerprint: true deleteDir() } } diff --git a/compile.sh b/compile.sh index 36bf4a3..e0fd143 100755 --- a/compile.sh +++ b/compile.sh @@ -6,5 +6,3 @@ mkdir out rm -rf out/* dart compile exe -o out/server_test bin/server_test.dart dart compile exe -o out/client_test bin/client_test.dart -dart compile exe -o out/dbikc.bin bin/dbikc.dart -dart compile exe -o out/mkfsreport.bin bin/mkfsreport.dart \ No newline at end of file