shithub: tlsclient

Download patch

ref: 3408b6170e377f55dfa01c41d5d4c02c3e6ae968
parent: 6555ca3b78a734e0b4098fd224c3c46f9e064eb0
author: grobe0ba <grobe0ba@tcp80.org>
date: Sun Oct 5 08:34:54 EDT 2025

remove jenkins pipeline; add woodpecker workflow

--- /dev/null
+++ b/.woodpecker/default.yml
@@ -1,0 +1,12 @@
+when:
+  - event: [push, manual]
+    branch: master
+
+steps:
+  - name: build
+    image: git.tcp80.org/grobe0ba/alpine:ci
+    pull: true
+    commands:
+      - apk upgrade -aU
+      - apk add alpine-sdk
+      - make
--- a/Jenkinsfile
+++ /dev/null
@@ -1,12 +1,0 @@
-pipeline {
-	agent any
-
-	stages {
-		stage('Build') {
-			steps {
-				sh 'make -j"$(expr 2 \\* "$(nproc)")"'
-				archiveArtifacts artifacts: 'tlsclient', fingerprint: true
-			}
-		}
-	}
-}
--