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

12 lines
216 B
Groovy

pipeline {
agent {
docker { image 'mingc/android-build-box' }
}
stages {
stage('Gradle Build') {
steps {
sh 'gradle clean build'
}
}
}
}