Skip to content
Snippets Groups Projects
Commit fb015f7e authored by Erick Hitter's avatar Erick Hitter
Browse files

Fix test failures

parent 384bef38
1 merge request!1MVP
Pipeline #1830 passed with stages
in 2 minutes and 22 seconds
......@@ -17,7 +17,9 @@ lint:dockerfile:
- mkdir ~/.config
- cp ./.hadolint.yaml ~/.config/hadolint.yaml
script:
- find . -name "Dockerfile" -execdir hadolint {} \;
- |
set -eo pipefail
find . -name "Dockerfile" -execdir hadolint {} \;
lint:shell-script:
stage: test
......@@ -25,7 +27,9 @@ lint:shell-script:
before_script:
- shellcheck -V
script:
- find . -name "*.sh" -exec shellcheck {} \;
- |
set -eo pipefail
find . -name "*.sh" -exec shellcheck {} \;
#
# IMAGE BUILDS/PUSHES
......
ignored:
- DL3008
- DL3013
# - DL3013
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment