mirror of
https://github.com/zontreck/NBTEditor
synced 2024-11-21 13:48:56 -07:00
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
|
||||
|
||||
flutter pub get
|
||||
flutter build linux
|
||||
flutter build apk
|
||||
chmod +x compile.sh
|
||||
./compile.sh
|
||||
'''
|
||||
}
|
||||
}
|
||||
|
@ -46,6 +46,7 @@ pipeline {
|
|||
always {
|
||||
archiveArtifacts artifacts: '*.tgz', fingerprint: true
|
||||
archiveArtifacts artifacts: '*.apk', fingerprint: true
|
||||
archiveArtifacts artifacts: 'out/*', fingerprint: true
|
||||
deleteDir()
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
flutter build linux
|
||||
flutter build apk
|
||||
dart compile exe -o out/nbt2snbt bin/nbt2snbt.dart
|
||||
dart compile exe -o out/snbt2nbt bin/snbt2nbt.dart
|
||||
|
||||
|
|
Loading…
Reference in a new issue