Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tasks
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
biowdl
tasks
Merge requests
!32
style changes and adds task to check file md5
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
style changes and adds task to check file md5
BIOWDL-40
into
develop
Overview
0
Commits
5
Pipelines
0
Changes
1
Merged
Ruben Vorderman
requested to merge
BIOWDL-40
into
develop
6 years ago
Overview
0
Commits
5
Pipelines
0
Changes
1
Expand
Created by: DavyCats
0
0
Merge request reports
Viewing commit
e3439525
Prev
Next
Show latest version
1 file
+
12
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
e3439525
add CheckFileMD5
· e3439525
Cats
authored
6 years ago
common.wdl
+
12
−
0
Options
@@ -16,6 +16,18 @@ task AppendToStringArray {
}
}
# This task will fail if the MD5sum doesn't match the file.
task CheckFileMD5 {
File file
String MD5sum
command {
set -e -o pipefail
MD5SUM=$(md5sum ${file} | cut -d ' ' -f 1)
[ $MD5SUM = ${MD5sum} ]
}
}
task ConcatenateTextFiles {
Array[File] fileList
String combinedFilePath
Loading