Files
FtcRobotController/Jenkinsfile
2023-10-22 19:37:13 -07:00

17 lines
363 B
Groovy

pipeline {
agent {
docker { image 'mingc/android-build-box' }
}
stages {
stage('Gradle Build') {
steps {
sh './gradlew clean build'
}
}
}
post {
always {
archiveArtifacts artifacts: 'TeamCode/build/outputs/apk/debug/*.apk', fingerprint: true
}
}
}