-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
58 lines (53 loc) · 872 Bytes
/
.gitlab-ci.yml
File metadata and controls
58 lines (53 loc) · 872 Bytes
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
56
57
58
include:
- project: rigetti/ci
file: pipelines/docker.gitlab-ci.yml
variables:
IMAGE: rigetti/rpcq
test-python-36:
stage: test
tags:
- github
only:
refs:
- branches
image: python:3.6
script:
- python --version
- pip install -r requirements.txt
- pytest
test-python-37:
stage: test
tags:
- github
only:
refs:
- branches
image: python:3.7
script:
- python --version
- pip install -r requirements.txt
- pytest
test-python-38:
stage: test
tags:
- github
only:
refs:
- branches
image: python:3.8
script:
- python --version
- pip install -r requirements.txt
- pytest
test-lisp:
stage: test
tags:
- github
only:
refs:
- branches
image: rigetti/lisp:2019-07-11
script:
- sbcl --version
- make install-test-deps
- make test