jenkins test

This commit is contained in:
Zypherift 2024-05-21 22:36:28 +02:00
parent 4d32500d90
commit 1310ad4f2e

52
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,52 @@
pipeline {
agent any
environment {
FLUTTER_HOME = '/home/qwit-jenkins/flutter'
PATH = "$FLUTTER_HOME/bin:$PATH"
}
stages {
stage('Copy Key Properties') {
steps {
// Copy the key.properties file
sh 'cp /home/qwit-jenkins/key.properties refilc/android/key.properties'
}
}
stage('Flutter Doctor') {
steps {
// Ensure Flutter is set up correctly
sh 'flutter doctor'
}
}
stage('Dependencies') {
steps {
// Get Flutter dependencies
sh 'flutter pub get'
}
}
stage('Build') {
steps {
// Build the Flutter project
sh 'flutter build apk --release'
}
}
stage('Archive') {
steps {
// Archive the APK
archiveArtifacts artifacts: 'build/app/outputs/flutter-apk/app-release.apk', fingerprint: true
}
}
}
post {
always {
// Clean up workspace after build
cleanWs()
}
}
}