summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleg Pykhalov <go.wigust@gmail.com>2019-12-27 02:20:19 +0300
committerOleg Pykhalov <go.wigust@gmail.com>2019-12-27 02:20:19 +0300
commitb209d3b2261dcb7771d2bf15479599d2109e888e (patch)
tree05f1c638549061ead13318345ae5571d7c5da62f
parentguix: Fix dependencies in wigust/packages/lisp.scm. (diff)
downloadguix-wigust-b209d3b2261dcb7771d2bf15479599d2109e888e.tar.gz
Add Jenkinsfile.
-rw-r--r--Jenkinsfile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 0000000..0c22054
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,12 @@
+pipeline {
+ agent {
+ label "master"
+ }
+ stages {
+ stage("git clone guix-wigust") {
+ steps {
+ parallelGitClone url: "https://cgit.duckdns.org/git/guix/guix-wigust", nodeLabels: ["guix"], dir: "/home/oleg/src/guix-wigust"
+ }
+ }
+ }
+}