Compare commits

...

10 Commits

Author SHA1 Message Date
874b4df7a6 dfgh
Some checks failed
WEB karideo and rabbit/archidata/pipeline/head There was a failure building this commit
2023-01-10 23:19:04 +01:00
a0269cbca7 stupid hobbit
Some checks failed
WEB karideo and rabbit/archidata/pipeline/head There was a failure building this commit
2023-01-10 22:35:24 +01:00
fcbf051c10 upgrade builder docker
Some checks failed
WEB karideo and rabbit/archidata/pipeline/head There was a failure building this commit
2023-01-10 22:31:14 +01:00
a073a01111 qsdf 2023-01-10 00:47:25 +01:00
1942bb7aa3 sdfg 2023-01-10 00:16:33 +01:00
3967bdd3a0 sqdfg 2023-01-10 00:07:08 +01:00
74102aaacc test 2023-01-10 00:04:55 +01:00
a1be582891 test sub-docker 2023-01-10 00:02:11 +01:00
e0d97328b1 test auto_build 2023-01-09 23:54:14 +01:00
742eb37cce test 2023-01-08 21:02:52 +01:00

View File

@ -1,5 +1,18 @@
pipeline {
agent any
//agent any
agent {
docker {
image 'gitea.atria-soft.org/kangaroo-and-rabbit/archlinux-builder:latest'
//args '-u root'
}
}
options {
timeout(time: 30, unit: 'MINUTES')
disableConcurrentBuilds abortPrevious: true
}
triggers {
cron(env.BRANCH_NAME == 'master' || env.BRANCH_NAME == 'dev' ? '0 10 * * *' : '')
}
environment {
REGISTRY_ADDRESS = "gitea.atria-soft.org"
REGISTRY_ADDRESS_FULL = "https://${REGISTRY_ADDRESS}"
@ -18,6 +31,11 @@ pipeline {
sh 'javac --version'
}
}
stage('(prod) Build') {
steps {
sh 'mvn install'
}
}
}
}