diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..c40c2958457e26e4e7a81aa0ea026f2a4a39fd1e --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,27 @@ +tarballs: + stage: test + script: + - for file in `find . -iname "*tar.gz"`; + do + echo $file; + tar xf $file; + done + - ls -R + +LFS: + stage: test + script: + - yum install -y git-lfs + - git lfs install + - git lfs ls-files + - git lfs pull + +JSON: + stage: test + script: + - yum install -y jq + - for file in `find . -iname "*json"`; + do + echo $file; + cat $file | jq empty; + done