summaryrefslogtreecommitdiff
path: root/Jenkinsfile
diff options
context:
space:
mode:
authorMax Christian Pohle2021-11-23 18:14:27 +0100
committerMax Christian Pohle2021-11-23 18:14:27 +0100
commit593739a9501a0b316dfcb29896afb3b15406fda8 (patch)
tree1b377ffe65256ef18362f11853ea42efea720e60 /Jenkinsfile
parentb7b47e662a75096c7f99881b0d609731d5d6c8ce (diff)
downloadohmycgi-593739a9501a0b316dfcb29896afb3b15406fda8.tar.bz2
ohmycgi-593739a9501a0b316dfcb29896afb3b15406fda8.zip
Added ui for labelprinter and Jenkins build file
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile24
1 files changed, 24 insertions, 0 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 0000000..f452d6b
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,24 @@
1pipeline {
2 agent { label "c++" }
3
4 stages {
5 stage('Checkout') {
6 steps {
7 checkout scm
8 }
9 }
10 stage('Build') {
11 steps {
12 sh 'make main'
13 }
14 }
15 }
16
17 post {
18 always {
19 archiveArtifacts artifacts: 'main'
20 }
21 }
22}
23
24// vim: ft=groovy cindent expandtab tabstop=4 shiftwidth=4
..