mirror of
https://github.com/hadolint/hadolint-action.git
synced 2024-08-16 10:09:53 +02:00
Merge pull request #45 from mblottiere/fix/missing-problem-matcher
fix: missing problem-matcher
This commit is contained in:
commit
40f98da752
1 changed files with 4 additions and 8 deletions
12
hadolint.sh
12
hadolint.sh
|
@ -1,23 +1,19 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
# The problem-matcher definition must be present in the repository
|
# The problem-matcher definition must be present in the repository
|
||||||
# checkout (outside the Docker container running hadolint). We create
|
# checkout (outside the Docker container running hadolint). We copy
|
||||||
# a temporary folder and copy problem-matcher.json to it and make it
|
# problem-matcher.json to the home folder.
|
||||||
# readable.
|
cp /problem-matcher.json "$HOME/"
|
||||||
TMP_FOLDER=$(mktemp -d -p .)
|
|
||||||
cp /problem-matcher.json "${TMP_FOLDER}"
|
|
||||||
chmod -R a+rX "${TMP_FOLDER}"
|
|
||||||
|
|
||||||
# After the run has finished we remove the problem-matcher.json from
|
# After the run has finished we remove the problem-matcher.json from
|
||||||
# the repository so we don't leave the checkout dirty. We also remove
|
# the repository so we don't leave the checkout dirty. We also remove
|
||||||
# the matcher so it won't take effect in later steps.
|
# the matcher so it won't take effect in later steps.
|
||||||
cleanup() {
|
cleanup() {
|
||||||
echo "::remove-matcher owner=brpaz/hadolint-action::"
|
echo "::remove-matcher owner=brpaz/hadolint-action::"
|
||||||
rm -rf "${TMP_FOLDER}"
|
|
||||||
}
|
}
|
||||||
trap cleanup EXIT
|
trap cleanup EXIT
|
||||||
|
|
||||||
echo "::add-matcher::${TMP_FOLDER}/problem-matcher.json"
|
echo "::add-matcher::$HOME/problem-matcher.json"
|
||||||
|
|
||||||
if [ -n "$HADOLINT_CONFIG" ]; then
|
if [ -n "$HADOLINT_CONFIG" ]; then
|
||||||
HADOLINT_CONFIG="-c ${HADOLINT_CONFIG}"
|
HADOLINT_CONFIG="-c ${HADOLINT_CONFIG}"
|
||||||
|
|
Loading…
Reference in a new issue