From: Izuru Yakumo Date: Sat, 21 Sep 2024 12:42:44 +0000 (-0300) Subject: I activate this card! X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=a1d1fb3b24c82190a7b7a544baab6274e206b47d;p=aya.git I activate this card! Signed-off-by: Izuru Yakumo --- 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 + } + } + } +}