diff options
author | Laurent Bonnans <laurent.bonnans@here.com> | 2018-06-08 15:43:32 +0200 |
---|---|---|
committer | Laurent Bonnans <laurent.bonnans@here.com> | 2018-06-18 15:41:42 +0200 |
commit | 55e49cdb4b2d1d818844703a44483ff92041d80d (patch) | |
tree | 2ce24e947d39d701ffb5797d6a4547c78dfb07c8 /scripts | |
parent | 46a3601acbda26e2fdeb3a3daf337887e757742c (diff) | |
download | meta-updater-55e49cdb4b2d1d818844703a44483ff92041d80d.tar.gz |
Checkout of repo from Jenkins
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/ci/Jenkinsfile | 27 |
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 @@ | |||
1 | pipeline { | ||
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: | ||