Changing it to gradle

This commit is contained in:
2023-10-22 19:05:00 -07:00
parent d08f00ce12
commit aa2d8a2b8a

6
Jenkinsfile vendored
View File

@ -1,11 +1,11 @@
pipeline { pipeline {
agent { agent {
docker { image 'node:18.18.2-alpine3.18' } docker { image 'mingc/android-build-box' }
} }
stages { stages {
stage('Test') { stage('Gradle Build') {
steps { steps {
sh 'node --version' sh 'gradle clean build'
} }
} }
} }