diff options
| author | Kali Kaneko (leap communications) <kali@leap.se> | 2017-03-14 20:52:52 +0100 | 
|---|---|---|
| committer | Kali Kaneko (leap communications) <kali@leap.se> | 2017-03-15 19:02:31 +0100 | 
| commit | 72350b78a14dc5fd8d63b41b86a2394e9e898b15 (patch) | |
| tree | 9c16e8eaccc2c36834fcc651de7fb5989dd2aaf6 | |
| parent | dfc4a7d8878283a488c38e035ea273ee06379b93 (diff) | |
[tests] separate build_ui test
| -rw-r--r-- | .gitlab-ci.yml | 13 | 
1 files changed, 6 insertions, 7 deletions
| diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f805582..d3d256b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -20,21 +20,20 @@ bitmask_latest_bundle:      name: "Bitmask_linux64_latest_${CI_BUILD_REF}"      expire_in: 1 month -build: +build_ui:    image: leapcode/bitmask-dev:latest    stage: build    script: -    - virtualenv venv -    - source venv/bin/activate -    - make dev-latest-backend -    - mkdir -p /root/.config/leap/ -    - bitmaskd -    - bitmaskctl status +    - cd ui && make dev-build  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 | 
