From 593739a9501a0b316dfcb29896afb3b15406fda8 Mon Sep 17 00:00:00 2001 From: Max Christian Pohle Date: Tue, 23 Nov 2021 18:14:27 +0100 Subject: Added ui for labelprinter and Jenkins build file --- Jenkinsfile | 24 ++++++++++++++++++++++ index.html | 66 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 90 insertions(+) create mode 100644 Jenkinsfile create mode 100644 index.html diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..f452d6b --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,24 @@ +pipeline { + agent { label "c++" } + + stages { + stage('Checkout') { + steps { + checkout scm + } + } + stage('Build') { + steps { + sh 'make main' + } + } + } + + post { + always { + archiveArtifacts artifacts: 'main' + } + } +} + +// vim: ft=groovy cindent expandtab tabstop=4 shiftwidth=4 diff --git a/index.html b/index.html new file mode 100644 index 0000000..9b5ffdf --- /dev/null +++ b/index.html @@ -0,0 +1,66 @@ + + + + + print label + + + + + +
+

Simple label

+
+ + +
+ + + + -- cgit v1.2.3