From 9cea75ce29ded88a79fac2b2f57e72578e5e22e2 Mon Sep 17 00:00:00 2001
From: Jeremy Mathews <Jeremy.Mathews@utsouthwestern.edu>
Date: Fri, 15 Nov 2019 09:59:09 -0600
Subject: [PATCH] Add md5sum check

---
 .gitlab-ci.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f8a4c14..863323a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -14,3 +14,5 @@ unit:
   - singularity run 'docker://bicf/bdbag:1.0' bdbag --materialize ./test_data/File_Q-Y53P.zip
   - singularity run 'docker://bicf/bdbag:1.0' bdbag --validate full ./test_data/File_Q-Y53P/
   - singularity run 'docker://bicf/bdbag:1.0' bdbag --validate completeness ./test_data/File_Q-Y53P/
+  - find ./test_data/File_Q-Y53P/ -type f -print0 | xargs -0 md5sum > test.md5
+  - md5sum -c test.md5
-- 
GitLab