diff options
author | stuebinm | 2021-10-05 21:28:31 +0200 |
---|---|---|
committer | stuebinm | 2021-10-05 21:31:31 +0200 |
commit | 09ac7d3d0364b0f0a7fbbeebc880a3c421061a94 (patch) | |
tree | 868f635a76328ed447a0ffac7e9697a940125380 | |
parent | fb42e3b77422c9034c868a61a5550ebca9a51973 (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.
-rw-r--r-- | .gitlab-ci.yml | 12 |
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 |