mirror of
https://github.com/zontreck/NBTEditor
synced 2024-11-21 13:48:56 -07:00
75 lines
2.2 KiB
Groovy
75 lines
2.2 KiB
Groovy
pipeline {
|
|
agent any
|
|
|
|
options {
|
|
buildDiscarder(logRotator(numToKeepStr: '5'))
|
|
}
|
|
|
|
stages {
|
|
stage("Build on Linux") {
|
|
agent {
|
|
label 'linux'
|
|
}
|
|
steps {
|
|
script {
|
|
sh '''
|
|
#!/bin/bash
|
|
|
|
flutter pub get
|
|
chmod +x compile.sh
|
|
./compile.sh
|
|
|
|
rm out/.placeholder
|
|
|
|
cd build/linux/x64/release/bundle
|
|
tar -cvf ../../../../../linux.tgz ./
|
|
cd ../../../../app/outputs/flutter-apk
|
|
cp app-release.apk ../../../../
|
|
|
|
cd ../../../../
|
|
|
|
appimage-builder --recipe AppImageBuilder.yml
|
|
|
|
#appimagetool AppDir/*.desktop -u "zsync|https://ci.zontreck.com/job/Projects/job/Dart/job/NBTEditor/job/main/lastSuccessfulBuild/artifact/NBT%20Editor-latest-x86_64.AppImage.zsync"
|
|
'''
|
|
}
|
|
}
|
|
post {
|
|
always {
|
|
archiveArtifacts artifacts: '*.tgz', fingerprint: true
|
|
archiveArtifacts artifacts: '*.apk', fingerprint: true
|
|
archiveArtifacts artifacts: '*.AppImage', fingerprint: true
|
|
archiveArtifacts artifacts: '*.zsync', fingerprint: true
|
|
|
|
deleteDir()
|
|
}
|
|
}
|
|
}
|
|
|
|
stage('Build on Windows') {
|
|
agent {
|
|
label 'windows'
|
|
}
|
|
steps {
|
|
script {
|
|
bat 'del out\\.placeholder'
|
|
bat 'flutter pub get'
|
|
bat 'flutter build windows'
|
|
|
|
dir("build\\windows\\x64\\runner\\Release") {
|
|
bat 'tar -cvf ..\\..\\..\\..\\..\\windows.tgz .'
|
|
}
|
|
|
|
bat 'iscc wininst.iss'
|
|
}
|
|
}
|
|
post {
|
|
always {
|
|
archiveArtifacts artifacts: '*.tgz', fingerprint: true
|
|
|
|
deleteDir()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|