shithub: tlsclient

Download patch

ref: b891e5c09af0c39af1b1e9596131afc765ef5e6c
parent: 94f2907dc40a6415a10c252cb9ba3971f1f7e838
author: grobe0ba <grobe0ba@tcp80.org>
date: Sat Jan 25 07:27:43 EST 2025

add Jenkinsfile

--- /dev/null
+++ b/Jenkinsfile
@@ -1,0 +1,19 @@
+pipeline {
+	agent {
+		kubernetes {
+				cloud 'sm0'
+				inheritFrom 'Alpine'
+				namespace 'jenkins'
+			}
+		}
+
+
+	stages {
+		stage('Build') {
+			steps {
+				sh 'make -j"$(expr 2 \\* "$(nproc)")"'
+				archiveArtifacts artifacts: 'tlsclient', fingerprint: true
+			}
+		}
+	}
+}
--