Skip to content

Commit 1318a55

Browse files
committed
rename draft-4 to v1.0.0 in site/
1 parent f188887 commit 1318a55

File tree

9 files changed

+50
-7
lines changed

9 files changed

+50
-7
lines changed

site/cwlsite-job.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
"schemas": [
66
{"$import": "cwlsite-draft3-schemas.json"},
7-
{"$import": "cwlsite-draft4-schemas.json"}],
7+
{"$import": "cwlsite-v1.0.0-schemas.json"}],
88

99
"brand": "CWL",
1010
"brandimg": {
@@ -26,6 +26,6 @@
2626
"primtype": null
2727
},
2828
{"$import": "cwlsite-draft3-job.json"},
29-
{"$import": "cwlsite-draft4-job.json"}
29+
{"$import": "cwlsite-v1.0.0-job.json"}
3030
]
3131
}

site/cwlsite-draft4-job.json renamed to site/cwlsite-v1.0.0-job.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"source": {
1515
"class": "File",
1616
"path": "../v1.0/CommandLineTool-standalone.yml",
17-
"secondaryFiles": {"$import": "draft4-deps.json"}
17+
"secondaryFiles": {"$import": "v1.0.0-deps.json"}
1818
},
1919
"target": "v1.0/CommandLineTool.html",
2020
"renderlist": [
@@ -30,7 +30,7 @@
3030
"source": {
3131
"class": "File",
3232
"path": "../v1.0/CommonWorkflowLanguage.yml",
33-
"secondaryFiles": {"$import": "draft4-deps.json"}
33+
"secondaryFiles": {"$import": "v1.0.0-deps.json"}
3434
},
3535
"target": "v1.0/Workflow.html",
3636
"renderlist": [
@@ -50,7 +50,7 @@
5050
"primtype": "#CWLType"
5151
},
5252
{
53-
"source": {$import: draft4-metaschema.json},
53+
"source": {$import: v1.0.0-metaschema.json},
5454
"target": "v1.0/SchemaSalad.html",
5555
"renderlist": [
5656
"https://w3id.org/cwl/salad#Semantic_Annotations_for_Linked_Avro_Data",

site/cwlsite-draft4-schemas.json renamed to site/cwlsite-v1.0.0-schemas.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
"schema_in": {
33
"class": "File",
44
"path": "../v1.0/CommonWorkflowLanguage.yml",
5-
"secondaryFiles": {"$import": "draft4-deps.json"}
5+
"secondaryFiles": {"$import": "v1.0.0-deps.json"}
66
},
77
"context_target": "v1.0/cwl-context.json",
88
"rdfs_target": "v1.0/cwl.ttl"
99
}, {
10-
"schema_in": {$import: draft4-metaschema.json},
10+
"schema_in": {$import: v1.0.0-metaschema.json},
1111
"context_target": "v1.0/salad-context.json",
1212
"rdfs_target": "v1.0/salad.ttl"
1313
}
File renamed without changes.
File renamed without changes.

v1.1.0-dev1/v1.1.0-dev1/env-job3.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
in: "hello test env"
2+
cwl:requirements:
3+
- class: EnvVarRequirement
4+
envDef:
5+
- envName: TEST_ENV
6+
envValue: $(inputs.in)

v1.1.0-dev1/v1.1.0-dev1/env-job4.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
in: "hello test env"
2+
cwl:requirements:
3+
- class: EnvVarRequirement
4+
envDef:
5+
- envName: TEST_ENV
6+
envValue: conflict

v1.1.0-dev1/v1.1.0-dev1/env-tool3.cwl

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
class: CommandLineTool
2+
cwlVersion: v1.1.0-dev1
3+
inputs:
4+
in: string
5+
outputs:
6+
out:
7+
type: File
8+
outputBinding:
9+
glob: out
10+
11+
baseCommand: ["/bin/bash", "-c", "echo $TEST_ENV"]
12+
13+
stdout: out

v1.1.0-dev1/v1.1.0-dev1/env-tool4.cwl

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
class: CommandLineTool
2+
cwlVersion: v1.1.0-dev1
3+
inputs:
4+
in: string
5+
outputs:
6+
out:
7+
type: File
8+
outputBinding:
9+
glob: out
10+
11+
requirements:
12+
EnvVarRequirement:
13+
envDef:
14+
TEST_ENV: conflict
15+
16+
baseCommand: ["/bin/bash", "-c", "echo $TEST_ENV"]
17+
18+
stdout: out

0 commit comments

Comments
 (0)