-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathStageConformanceTestsData.yaml
69 lines (69 loc) · 2.38 KB
/
StageConformanceTestsData.yaml
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
apiVersion: batch/v1
kind: Job
metadata:
name: stage-conformance-test-data
spec:
template:
spec:
containers:
- name: 1-0
image: alpine:3.10
command:
- "sh"
- "-c"
- "cd /conformance; wget -q ${CWL_ARCHIVE_BASE}/${CWL_ARCHIVE_FILE}; unzip -q ${CWL_ARCHIVE_FILE}; rm ${CWL_ARCHIVE_FILE}; chmod -R a+rx *; ls -l"
env:
- name: CWL_ARCHIVE_BASE
value: "https://github.com/common-workflow-language/common-workflow-language/archive"
- name: CWL_ARCHIVE_FILE
value: "v1.0.2.zip"
volumeMounts:
- mountPath: /conformance
name: conformance-test-data
- name: 1-1
image: alpine:3.10
command:
- "sh"
- "-c"
- "cd /conformance; wget -q ${CWL_ARCHIVE_BASE}/${CWL_ARCHIVE_FILE}; unzip -q ${CWL_ARCHIVE_FILE}; rm ${CWL_ARCHIVE_FILE}; chmod -R a+rx *; ls -l"
env:
- name: CWL_ARCHIVE_BASE
value: "https://github.com/common-workflow-language/cwl-v1.1/archive"
- name: CWL_ARCHIVE_FILE
value: "v1.1.0.zip"
volumeMounts:
- mountPath: /conformance
name: conformance-test-data
- name: 1-2
image: alpine:3.10
command:
- "sh"
- "-c"
- "cd /conformance; wget -q ${CWL_ARCHIVE_BASE}/${CWL_ARCHIVE_FILE}; unzip -q ${CWL_ARCHIVE_FILE}; rm ${CWL_ARCHIVE_FILE}; chmod -R a+rx *; ls -l"
env:
- name: CWL_ARCHIVE_BASE
value: "https://github.com/common-workflow-language/cwl-v1.2/archive/refs/tags"
- name: CWL_ARCHIVE_FILE
value: "v1.2.0.zip"
volumeMounts:
- mountPath: /conformance
name: conformance-test-data
- name: 1-2-1
image: alpine:3.10
command:
- "sh"
- "-c"
- "cd /conformance; wget -q ${CWL_ARCHIVE_BASE}/${CWL_ARCHIVE_FILE}; unzip -q ${CWL_ARCHIVE_FILE}; rm ${CWL_ARCHIVE_FILE}; chmod -R a+rx *; ls -l"
env:
- name: CWL_ARCHIVE_BASE
value: "https://github.com/common-workflow-language/cwl-v1.2/archive/refs/heads"
- name: CWL_ARCHIVE_FILE
value: "1.2.1_proposed.zip"
volumeMounts:
- mountPath: /conformance
name: conformance-test-data
restartPolicy: Never
volumes:
- name: conformance-test-data
persistentVolumeClaim:
claimName: conformance-test-data