forked from Autodesk/molecular-design-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
codeship-services.yml
103 lines (93 loc) · 2.58 KB
/
codeship-services.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
docker_make:
build:
context: .
dockerfile: ./deployment/build-env.dockerfile
volumes:
- ./tmp/makefiles:/makefiles
add_docker: true
cached: true
publisher:
encrypted_env_file: deployment/tokens.crypt
build:
context: .
dockerfile: ./deployment/build-env.dockerfile
add_docker: true
volumes:
- ./tmp/reports:/opt/reports
test_moldesign_minimal:
encrypted_env_file: deployment/tokens.crypt
build:
context: ./deployment
dockerfile: moldesign-minimal-cache.dockerfile
cached: false # do not cache this! It gets built before the cache is triggered
working_dir: /opt/molecular-design-toolkit/moldesign/_tests
add_docker: true
environment:
TESTENV: minimal
PYVERSION: 3
volumes:
- ./tmp/reports:/opt/reports
test_moldesign_minimal_py2:
encrypted_env_file: deployment/tokens.crypt
build:
context: ./deployment
dockerfile: moldesign-minimal-py2-cache.dockerfile
cached: false # do not cache this! It gets built before the cache is triggered
working_dir: /opt/molecular-design-toolkit/moldesign/_tests
add_docker: true
environment:
TESTENV: minimal
PYVERSION: 2
volumes:
- ./tmp/reports:/opt/reports
test_moldesign_complete:
encrypted_env_file: deployment/tokens.crypt
build:
context: ./deployment
dockerfile: moldesign-complete-cache.dockerfile
cached: false # do not cache this! It gets built before the cache is triggered
working_dir: /opt/molecular-design-toolkit/moldesign/_tests
add_docker: true
environment:
TESTENV: complete
PYVERSION: 3
volumes:
- ./tmp/reports:/opt/reports
test_moldesign_complete_py2:
encrypted_env_file: deployment/tokens.crypt
build:
context: ./deployment
dockerfile: moldesign-complete-py2-cache.dockerfile
cached: false # do not cache this! It gets built before the cache is triggered
working_dir: /opt/molecular-design-toolkit/moldesign/_tests
add_docker: true
environment:
TESTENV: complete
PYVERSION: 2
volumes:
- ./tmp/reports:/opt/reports
cache_nwchem_build:
build:
dockerfile: Dockerfile.nwchem_build
context: ./tmp/makefiles
cached: true
cache_pyscf_build:
build:
dockerfile: Dockerfile.pyscf_build
context: ./tmp/makefiles
cached: true
cache_deploybase:
build:
dockerfile: Dockerfile.deploybase
context: ./tmp/makefiles
cached: true
cache_python_deploy_base:
build:
dockerfile: Dockerfile.python_deploy_base
context: ./tmp/makefiles
cached: true
cache_python_deploy_base_py2:
build:
dockerfile: Dockerfile.python_deploy_base_py2
context: ./tmp/makefiles
cached: true