Compare commits

...

6 Commits

Author SHA1 Message Date
55eacfc391 Add artifact command 2023-10-22 19:37:13 -07:00
45bab85f09 Update gradle path command 2023-10-22 19:20:48 -07:00
aa2d8a2b8a Changing it to gradle 2023-10-22 19:05:00 -07:00
d08f00ce12 Adding example Jenkinsfile 2023-10-22 19:01:34 -07:00
ba5a1102ed Merge remote-tracking branch 'origin/branch-cooper' into branch-carlos 2023-10-22 18:46:46 -07:00
ffd94c28eb Add branch and commit sample change 2023-09-06 20:51:08 +00:00
2 changed files with 18 additions and 1 deletions

17
Jenkinsfile vendored Normal file
View 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
}
}
}

View File

@ -1,4 +1,4 @@
## NOTICE ## SCDS NOTICE
This repository contains the public FTC SDK for the POWERPLAY (2022-2023) competition season. This repository contains the public FTC SDK for the POWERPLAY (2022-2023) competition season.