Initial hello-world program.

Change-Id: Iaf532290dcde6118eec31d3b5283908cc552335e
diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 0000000..5590199
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,52 @@
+// -*- mode: groovy -*-
+pipeline {
+
+  agent {
+    kubernetes {
+      cloud 'kubernetes'
+      label 'example-v1'
+      containerTemplate {
+        name 'debian'
+        image 'buildpack-deps:stretch'
+        ttyEnabled true
+        command '/bin/cat'
+      }
+    }
+  }
+
+  stages {
+
+    stage('Prepare') {
+      steps {
+        container('debian') {
+          ansiColor('xterm') {
+            sh """
+              apt-get update && apt-get install -y --no-install-recommends build-essential colormake 
+            """
+          }
+        }
+      }
+    }
+
+    stage('Build') {
+      steps {
+        container('debian') {
+          ansiColor('xterm') {
+            sh """
+              colormake 
+            """
+          }
+        }
+      }
+    }
+
+    stage('Archive artifacts') {
+      steps {
+        container('baker') {
+          archiveArtifacts 'hello-world-ng'
+        }
+      }
+    }
+
+  }
+}