From a1d1fb3b24c82190a7b7a544baab6274e206b47d Mon Sep 17 00:00:00 2001 From: Izuru Yakumo Date: Sat, 21 Sep 2024 09:42:44 -0300 Subject: [PATCH] I activate this card! Signed-off-by: Izuru Yakumo --- Jenkinsfile | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..893aa52 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,35 @@ +pipeline { + agent any + stages { + stage('Build for FreeBSD amd64') { + steps { + sh 'make GOOS=freebsd GOARCH=amd64' + archiveArtifacts artifacts: 'aya-freebsd-amd64', fingerprint: true + } + } + stage('Build for FreeBSD i386') { + steps { + sh 'make GOOS=freebsd GOARCH=386' + archiveArtifacts artifacts: 'aya-freebsd-386', fingerprint: true + } + } + stage('Build for NetBSD amd64') { + steps { + sh 'make GOOS=netbsd GOARCH=amd64' + archiveArtifacts artifacts: 'aya-netbsd-amd64', fingerprint: true + } + } + stage('Build for NetBSD i386') { + steps { + sh 'make GOOS=netbsd GOARCH=386' + archiveArtifacts artifacts: 'aya-netbsd-386', fingerprint: true + } + } + stage('Build for OpenBSD amd64') { + steps { + sh 'make GOOS=openbsd GOARCH=amd64' + archiveArtifacts artifacts: 'aya-openbsd-amd64', fingerprint: true + } + } + } +} -- 2.43.0