summaryrefslogtreecommitdiff
path: root/Jenkinsfile
diff options
context:
space:
mode:
authorOleg Pykhalov <go.wigust@gmail.com>2022-09-19 11:43:13 +0300
committerOleg Pykhalov <go.wigust@gmail.com>2022-09-19 11:43:13 +0300
commitc0e6d44bfa0ec1c1eb0fdbe7c0c32d42292c0c06 (patch)
treeb776baea57d1f80462cb6a3486f451c2659cc619 /Jenkinsfile
parentopenvpn_otp: Strip text in OPENVPN_OTP_SECRET_FILE. (diff)
downloadopenvpn-mintotp-cd.tar.gz
Add Jenkinsfile.HEADbq/cdcd
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile15
1 files changed, 15 insertions, 0 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 0000000..ae7fffc
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,15 @@
+pipeline {
+ agent { label "jenkins" }
+ options {
+ buildDiscarder(logRotator(numToKeepStr: "10",
+ artifactNumToKeepStr: "10"))
+ disableConcurrentBuilds()
+ }
+ stages {
+ stage("build") {
+ steps {
+ sh ":"
+ }
+ }
+ }
+}