Move CLI Tools to a different repo dedicated to helper tools.
This commit is contained in:
parent
a126358c5f
commit
7da8dbef33
2 changed files with 0 additions and 28 deletions
26
Jenkinsfile
vendored
26
Jenkinsfile
vendored
|
@ -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()
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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
|
Loading…
Reference in a new issue