summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLaurent Bonnans <laurent.bonnans@here.com>2018-06-08 15:43:32 +0200
committerLaurent Bonnans <laurent.bonnans@here.com>2018-06-18 15:41:42 +0200
commit55e49cdb4b2d1d818844703a44483ff92041d80d (patch)
tree2ce24e947d39d701ffb5797d6a4547c78dfb07c8
parent46a3601acbda26e2fdeb3a3daf337887e757742c (diff)
downloadmeta-updater-55e49cdb4b2d1d818844703a44483ff92041d80d.tar.gz
Checkout of repo from Jenkins
-rw-r--r--scripts/ci/Jenkinsfile27
1 files changed, 27 insertions, 0 deletions
diff --git a/scripts/ci/Jenkinsfile b/scripts/ci/Jenkinsfile
new file mode 100644
index 0000000..0b4afa9
--- /dev/null
+++ b/scripts/ci/Jenkinsfile
@@ -0,0 +1,27 @@
1pipeline {
2 agent any
3 stages {
4 stage('checkout') {
5 steps {
6 checkout([$class: 'RepoScm',
7 manifestRepositoryUrl: 'https://github.com/advancedtelematic/updater-repo',
8 manifestBranch: null,
9 manifestFile: null,
10 manifestGroup: null,
11 mirrorDir: null,
12 jobs: 0,
13 depth: 0,
14 localManifest: null,
15 destinationDir: 'updater-repo',
16 repoUrl: null,
17 currentBranch: false,
18 resetFirst: true,
19 quiet: false,
20 trace: false,
21 showAllChanges: false,
22 ])
23 }
24 }
25 }
26}
27// vim: set ft=groovy tabstop=2 shiftwidth=2 expandtab: