43dbff938e
If a branch name contains '.sh', current shellcheck checks the branch file under .git/ and outputs error because the format is not shell script one. This makes shellcheck exclude files under .git/ to avoid this issue.
16 lines
635 B
YAML
16 lines
635 B
YAML
---
|
|
shellcheck:
|
|
extends: .job
|
|
stage: unit-tests
|
|
tags: [light]
|
|
variables:
|
|
SHELLCHECK_VERSION: v0.7.1
|
|
before_script:
|
|
- ./tests/scripts/rebase.sh
|
|
- curl --silent --location "https://github.com/koalaman/shellcheck/releases/download/"${SHELLCHECK_VERSION}"/shellcheck-"${SHELLCHECK_VERSION}".linux.x86_64.tar.xz" | tar -xJv
|
|
- cp shellcheck-"${SHELLCHECK_VERSION}"/shellcheck /usr/bin/
|
|
- shellcheck --version
|
|
script:
|
|
# Run shellcheck for all *.sh except contrib/
|
|
- find . -name '*.sh' -not -path './contrib/*' -not -path './.git/*' | xargs shellcheck --severity error
|
|
except: ['triggers', 'master']
|