-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.gitlab-ci.yml
37 lines (34 loc) · 873 Bytes
/
.gitlab-ci.yml
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
stages:
- Install
- Test
####### COMMON (Install) #######
Install:
stage: Install
only:
- merge_requests
- master@sravel/RattleSNP
- web
image: sravel/rattlesnp_base:0.0.1
script:
- echo "Test to python 3.8"
- tox --recreate -e py38 -vv
environment:
name: Install to python 3.8
####### TEST INSTALL #######
Test_config_CMSR.yaml:
stage: Test
extends: "Install"
only:
- merge_requests
- master@sravel/RattleSNP
- web
image: sravel/rattlesnp_base:0.0.1
script:
- echo "Test to python 3.8"
- tox --recreate -e py38 -vv
- tox -e py38-run -vv -- ../../rattleSNP/install_files/config_test/config_CMSR.yaml
environment:
name: Test to run config_CMSR.yaml on python 3.8
needs:
- job: "Install"
artifacts: true