LibAC-dart/Jenkinsfile
2024-07-27 02:33:05 -07:00

49 lines
1.1 KiB
Groovy

pipeline {
agent {
label 'linux'
}
options {
buildDiscarder(
logRotator(
numToKeepStr: '5'
)
)
}
stages {
stage('Build') {
steps {
script {
// Use bash as the shell for these commands
sh '''
#!/bin/bash
unset WORKSPACE
unset WORKSPACE_TMP
rm -rf doc
dart pub get
dart doc
dart compile exe -o out/dbikc.bin bin/dbikc.dart
tar -cvf docs.tgz doc/api/*
'''
}
}
}
stage('Deploy') {
steps {
sh 'flutter pub publish -f --skip-validation'
}
}
}
post {
always {
archiveArtifacts artifacts: "*.tgz", fingerprint: true
archiveArtifacts artifacts: "out/*.bin", fingerprint: true
deleteDir()
}
}
}