aboutsummaryrefslogtreecommitdiff
path: root/JenkinsD
diff options
context:
space:
mode:
Diffstat (limited to 'JenkinsD')
-rw-r--r--JenkinsD19
1 files changed, 0 insertions, 19 deletions
diff --git a/JenkinsD b/JenkinsD
deleted file mode 100644
index 4ce678b53..000000000
--- a/JenkinsD
+++ /dev/null
@@ -1,19 +0,0 @@
-pipeline {
- agent any
- stages {
-
- stage ('Build') {
- when {
- expression { env.BRANCH_NAME == '3.x' || env.BRANCH_NAME == '3.x-unstable' }
- }
- steps {
- sh "rm -rf build/libs/"
- sh "chmod +x gradlew"
- sh "./gradlew clean --stacktrace"
- sh "./gradlew build publish --refresh-dependencies --stacktrace"
-
- archiveArtifacts artifacts: '**/build/libs/*.jar', fingerprint: true
- }
- }
- }
-}