-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add direct test for linked remote files w. commit hash
This test is somewhat brittle because it assumes the existence of this repository on github. If github disappears, or this repository is no longer hosted there this test will have to be updated.
- Loading branch information
Kaushik Ghose
committed
Dec 9, 2019
1 parent
84868af
commit 2b10fa1
Showing
4 changed files
with
46 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# This test is somewhat brittle because it assumes the | ||
# existence of this repository on github. If github | ||
# disappears, or this repository is no longer hosted there | ||
# the CWL for this test will have to be updated. | ||
|
||
cwlVersion: v1.0 | ||
class: Workflow | ||
|
||
inputs: | ||
in1: string | ||
|
||
steps: | ||
step1: | ||
run: https://raw.githubusercontent.com/rabix/benten/4223a4/tests/cwl/misc/clt1.cwl | ||
in: | ||
in1: in1 | ||
out: [out1] | ||
|
||
step2: | ||
run: https://raw.githubusercontent.com/rabix/benten/5223a4/tests/cwl/misc/clt1.cwl | ||
in: | ||
in1: in1 | ||
out: [out1] | ||
|
||
|
||
outputs: | ||
out1: | ||
type: string | ||
outputSource: [step1/out1, step2/out1] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters