From 55e49cdb4b2d1d818844703a44483ff92041d80d Mon Sep 17 00:00:00 2001 From: Laurent Bonnans Date: Fri, 8 Jun 2018 15:43:32 +0200 Subject: Checkout of repo from Jenkins --- scripts/ci/Jenkinsfile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 scripts/ci/Jenkinsfile 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 @@ +pipeline { + agent any + stages { + stage('checkout') { + steps { + checkout([$class: 'RepoScm', + manifestRepositoryUrl: 'https://github.com/advancedtelematic/updater-repo', + manifestBranch: null, + manifestFile: null, + manifestGroup: null, + mirrorDir: null, + jobs: 0, + depth: 0, + localManifest: null, + destinationDir: 'updater-repo', + repoUrl: null, + currentBranch: false, + resetFirst: true, + quiet: false, + trace: false, + showAllChanges: false, + ]) + } + } + } +} +// vim: set ft=groovy tabstop=2 shiftwidth=2 expandtab: -- cgit v1.2.3-54-g00ecf