diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2016-11-06 17:55:07 +0100 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2016-11-09 20:36:55 +0100 |
commit | 981e4b6e66fc807fd36086e37296e40da914a0ff (patch) | |
tree | e14b1dc8ef28eabbff1999f15f68c3ee26e1316b /.gitlab-ci.yml | |
parent | 54613799b6277cfaf5636f9a193a70622ba0c0ae (diff) |
[ci] generate bundle from gitlab runner
some hacks needed, it seems pyinstaller is choking again on namespace
packages for some reason that is beyond my current comprenhension.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f9959e7..4488871 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ -# Todo: move test stage to the top once it succeeds again stages: - - build - test + - build + - bundle test: image: leapcode/soledad:latest @@ -19,3 +19,11 @@ build: - mkdir -p /root/.config/leap/ - bitmaskd - bitmaskctl status + +bundle: + image: leapcode/bitmask-dev:latest + stage: bundle + script: pkg/build_bundle_with_venv.sh + artifacts: + paths: + - dist/*.tar.gz |