add jenkinsfile
Some checks failed
pyrite-dev/taiga/pipeline/head There was a failure building this commit
Some checks failed
pyrite-dev/taiga/pipeline/head There was a failure building this commit
This commit is contained in:
parent
3bb222a532
commit
dc37db4781
2 changed files with 30 additions and 0 deletions
25
Jenkinsfile
vendored
Normal file
25
Jenkinsfile
vendored
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
pipeline {
|
||||
agent {
|
||||
label "built-in"
|
||||
}
|
||||
stages {
|
||||
stage("Build") {
|
||||
parallel {
|
||||
stage("Build for Linux 64-bit") {
|
||||
agent {
|
||||
label "built-in"
|
||||
}
|
||||
steps {
|
||||
sh("make -j4 CC=musl-gcc LDFLAGS=-static")
|
||||
archiveArtifacts("taiga")
|
||||
}
|
||||
}
|
||||
}
|
||||
post {
|
||||
always {
|
||||
notifyDiscord()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -4,6 +4,11 @@
|
|||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#ifdef _WIN32
|
||||
#include <direct.h>
|
||||
#else
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
/* site.c */
|
||||
int action_site(int argc, char** argv);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue