summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorstuebinm2021-10-05 21:28:31 +0200
committerstuebinm2021-10-05 21:31:31 +0200
commit09ac7d3d0364b0f0a7fbbeebc880a3c421061a94 (patch)
tree868f635a76328ed447a0ffac7e9697a940125380 /.gitlab-ci.yml
parentfb42e3b77422c9034c868a61a5550ebca9a51973 (diff)
add guix-based pipeline building a tarball
the build artefacts should be relocatable and run on (almost?) every system that has a linux kernel underneath.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..5491efb
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,12 @@
+image: registry.stuebinm.eu/guix
+
+stages:
+ - build
+
+build-job:
+ stage: build
+ script:
+ - cp $(guix pack -m manifest.scm -f tarball -S /bin=bin --relocatable --verbosity=3) walint.tar
+ artifacts:
+ paths:
+ - walint.tar