53 lines
No EOL
1.2 KiB
Groovy
53 lines
No EOL
1.2 KiB
Groovy
pipeline {
|
|
agent {
|
|
label 'linux'
|
|
}
|
|
options {
|
|
buildDiscarder(
|
|
logRotator(
|
|
numToKeepStr: '5'
|
|
)
|
|
)
|
|
}
|
|
|
|
stages {
|
|
stage ("Build") {
|
|
steps {
|
|
|
|
script {
|
|
sh '''
|
|
#!/bin/bash
|
|
|
|
flutter pub get
|
|
chmod +x compile.sh
|
|
./compile.sh
|
|
'''
|
|
}
|
|
}
|
|
}
|
|
stage ('Package') {
|
|
steps {
|
|
script {
|
|
sh '''
|
|
#!/bin/bash
|
|
|
|
cd build/linux/x64/release/bundle
|
|
tar -cvf ../../../../../linux.tgz ./
|
|
cd ../../../../app/outputs/flutter-apk
|
|
cp app-release.apk ../../../../
|
|
'''
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
post {
|
|
always {
|
|
archiveArtifacts artifacts: '*.tgz', fingerprint: true
|
|
archiveArtifacts artifacts: '*.apk', fingerprint: true
|
|
archiveArtifacts artifacts: 'out/*nb*', fingerprint: true
|
|
deleteDir()
|
|
}
|
|
}
|
|
} |