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

Fix test failures

parent 384bef38
No related branches found
No related tags found
Loading
Pipeline #1830 passed
......@@ -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.
Please register or to comment