Ensure builds also build the standalone binaries
This commit is contained in:
parent
812b216c86
commit
d5577bb39a
2 changed files with 4 additions and 2 deletions
5
Jenkinsfile
vendored
5
Jenkinsfile
vendored
|
@ -19,8 +19,8 @@ pipeline {
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
flutter pub get
|
flutter pub get
|
||||||
flutter build linux
|
chmod +x compile.sh
|
||||||
flutter build apk
|
./compile.sh
|
||||||
'''
|
'''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -46,6 +46,7 @@ pipeline {
|
||||||
always {
|
always {
|
||||||
archiveArtifacts artifacts: '*.tgz', fingerprint: true
|
archiveArtifacts artifacts: '*.tgz', fingerprint: true
|
||||||
archiveArtifacts artifacts: '*.apk', fingerprint: true
|
archiveArtifacts artifacts: '*.apk', fingerprint: true
|
||||||
|
archiveArtifacts artifacts: 'out/*', fingerprint: true
|
||||||
deleteDir()
|
deleteDir()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
flutter build linux
|
flutter build linux
|
||||||
|
flutter build apk
|
||||||
dart compile exe -o out/nbt2snbt bin/nbt2snbt.dart
|
dart compile exe -o out/nbt2snbt bin/nbt2snbt.dart
|
||||||
dart compile exe -o out/snbt2nbt bin/snbt2nbt.dart
|
dart compile exe -o out/snbt2nbt bin/snbt2nbt.dart
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue