taiga/Jenkinsfile
NishiOwO 8ecf8eb8f5
All checks were successful
pyrite-dev/taiga/pipeline/head This commit looks good
byeah
2026-03-01 22:57:19 +09:00

26 lines
402 B
Groovy

pipeline {
agent {
label "built-in"
}
stages {
stage("Build") {
parallel {
stage("Build for Linux 64-bit") {
agent {
label "built-in"
}
steps {
sh("git submodule update --init --recursive --force")
sh("make -j4 CC=musl-gcc LDFLAGS=-static")
archiveArtifacts("taiga")
}
}
}
post {
always {
notifyDiscord()
}
}
}
}
}