blob: f9959e7f35972e9fcb2135f0a0f477927a503789 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Todo: move test stage to the top once it succeeds again
stages:
- build
- test
test:
image: leapcode/soledad:latest
stage: test
script:
- tox --recreate -e py27-dev
build:
image: leapcode/bitmask-dev:latest
stage: build
script:
- virtualenv venv
- source venv/bin/activate
- make dev-backend
- mkdir -p /root/.config/leap/
- bitmaskd
- bitmaskctl status
|