Compare commits
6 Commits
e3469f56c4
...
55eacfc391
Author | SHA1 | Date | |
---|---|---|---|
55eacfc391 | |||
45bab85f09 | |||
aa2d8a2b8a | |||
d08f00ce12 | |||
ba5a1102ed | |||
ffd94c28eb |
17
Jenkinsfile
vendored
Normal file
17
Jenkinsfile
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user