summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-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: