blob: 43923a7970dbbfd0a8cee2f905f805268523445f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
stages:
- test
- bundle
- build
- e2e
linux_test:
image: leapcode/soledad:latest
stage: test
script:
- tox --recreate -e py27-dev
tags:
- linux
osx_test:
stage: test
allow_failure: true
script:
- tox --recreate -e py27-dev
tags:
- osx
bitmask_latest_bundle:
image: leapcode/bitmask-dev:latest
stage: bundle
script: pkg/build_bundle_with_venv.sh
artifacts:
paths:
- dist/bitmask-*
name: "Bitmask_linux64_latest_${CI_BUILD_REF}"
expire_in: 1 month
tags:
- linux
build_ui:
image: leapcode/bitmask-dev:latest
stage: build
script:
- cd ui && make dev-build
tags:
- linux
e2e_tests:
image: leapcode/bitmask-dev:latest
stage: e2e
allow_failure: true
script:
- virtualenv venv
- source venv/bin/activate
- make dev-latest-backend
- mkdir -p /root/.config/leap/
- apt install swaks
- make test_e2e
tags:
- linux
|