2020-09-03 10:12:49 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2020-11-12 12:27:34 -05:00
|
|
|
GetLinterVersions() {
|
2021-12-10 11:15:12 -05:00
|
|
|
debug "WRITE_LINTER_VERSIONS_FILE: ${WRITE_LINTER_VERSIONS_FILE}"
|
2020-11-12 12:27:34 -05:00
|
|
|
|
2021-12-10 11:15:12 -05:00
|
|
|
if [ "${WRITE_LINTER_VERSIONS_FILE}" = "true" ]; then
|
2024-01-15 13:37:45 -05:00
|
|
|
debug "Building linter version file: ${VERSION_FILE}"
|
2020-11-12 12:27:34 -05:00
|
|
|
if BuildLinterVersions "${VERSION_FILE}" "${LINTER_NAMES_ARRAY[@]}"; then
|
|
|
|
info "Linter version file built correctly."
|
|
|
|
exit
|
|
|
|
else
|
|
|
|
fatal "Error while building the versions file."
|
|
|
|
fi
|
2021-12-10 11:15:12 -05:00
|
|
|
else
|
|
|
|
debug "Skipping versions file build..."
|
2020-11-12 12:27:34 -05:00
|
|
|
fi
|
|
|
|
|
2024-01-15 13:37:45 -05:00
|
|
|
if ! cat "${VERSION_FILE}"; then
|
2024-01-30 02:48:24 -05:00
|
|
|
fatal "Failed to view version file: ${VERSION_FILE}"
|
2020-11-12 12:27:34 -05:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
################################################################################
|
|
|
|
#### Function BuildLinterVersions ##############################################
|
2020-09-03 10:56:34 -04:00
|
|
|
BuildLinterVersions() {
|
2020-11-02 16:39:34 -05:00
|
|
|
VERSION_FILE="${1}" && shift
|
|
|
|
LINTER_ARRAY=("$@")
|
|
|
|
|
2024-01-15 13:37:45 -05:00
|
|
|
# Start with an empty file. We might have built this file in a previous build
|
|
|
|
# stage, so we start fresh here.
|
|
|
|
rm -rfv "${VERSION_FILE}"
|
|
|
|
|
2020-11-02 16:51:07 -05:00
|
|
|
debug "Building linter version file ${VERSION_FILE} for the following linters: ${LINTER_ARRAY[*]}..."
|
2020-09-03 10:12:49 -04:00
|
|
|
|
|
|
|
##########################################################
|
|
|
|
# Go through the array of linters and print version info #
|
|
|
|
##########################################################
|
|
|
|
for LINTER in "${LINTER_ARRAY[@]}"; do
|
|
|
|
if [ -n "${LINTER}" ]; then
|
2024-01-15 13:37:45 -05:00
|
|
|
|
|
|
|
# Some linters need to account for special commands to get their version
|
|
|
|
|
2020-09-03 10:12:49 -04:00
|
|
|
if [[ ${LINTER} == "arm-ttk" ]]; then
|
2020-11-02 16:39:34 -05:00
|
|
|
GET_VERSION_CMD="$(grep -iE 'version' "/usr/bin/arm-ttk" | xargs 2>&1)"
|
2024-01-15 13:37:45 -05:00
|
|
|
# Some linters don't support a "get version" command
|
|
|
|
elif [[ ${LINTER} == "bash-exec" ]] || [[ ${LINTER} == "gherkin-lint" ]]; then
|
|
|
|
GET_VERSION_CMD="Version command not supported"
|
2023-01-09 00:10:46 -05:00
|
|
|
elif [[ ${LINTER} == "checkstyle" ]] || [[ ${LINTER} == "google-java-format" ]]; then
|
|
|
|
GET_VERSION_CMD="$(java -jar "/usr/bin/${LINTER}" --version 2>&1)"
|
|
|
|
elif [[ ${LINTER} == "clippy" ]]; then
|
|
|
|
GET_VERSION_CMD="$(cargo-clippy --version 2>&1)"
|
|
|
|
elif [[ ${LINTER} == "editorconfig-checker" ]]; then
|
|
|
|
GET_VERSION_CMD="$(${LINTER} -version)"
|
|
|
|
elif [[ ${LINTER} == "kubeconform" ]]; then
|
|
|
|
GET_VERSION_CMD="$(${LINTER} -v)"
|
2020-09-03 10:12:49 -04:00
|
|
|
elif [[ ${LINTER} == "lintr" ]]; then
|
|
|
|
# Need specific command for lintr (--slave is deprecated in R 4.0 and replaced by --no-echo)
|
2020-11-02 15:54:26 -05:00
|
|
|
GET_VERSION_CMD="$(R --slave -e "r_ver <- R.Version()\$version.string; \
|
2020-09-03 10:12:49 -04:00
|
|
|
lintr_ver <- packageVersion('lintr'); \
|
2020-11-02 15:54:26 -05:00
|
|
|
glue::glue('lintr { lintr_ver } on { r_ver }')")"
|
2023-01-09 00:10:46 -05:00
|
|
|
elif [[ ${LINTER} == "protolint" ]] || [[ ${LINTER} == "gitleaks" ]]; then
|
|
|
|
GET_VERSION_CMD="$(${LINTER} version)"
|
2020-09-03 10:12:49 -04:00
|
|
|
elif [[ ${LINTER} == "lua" ]]; then
|
2020-11-02 15:54:26 -05:00
|
|
|
GET_VERSION_CMD="$("${LINTER}" -v 2>&1)"
|
2023-09-12 12:58:09 -04:00
|
|
|
elif [[ ${LINTER} == "renovate-config-validator" ]]; then
|
|
|
|
GET_VERSION_CMD="$(renovate --version 2>&1)"
|
2020-09-03 10:12:49 -04:00
|
|
|
elif [[ ${LINTER} == "terrascan" ]]; then
|
2020-11-02 15:54:26 -05:00
|
|
|
GET_VERSION_CMD="$("${LINTER}" version 2>&1)"
|
2020-09-03 10:12:49 -04:00
|
|
|
else
|
2024-01-15 13:37:45 -05:00
|
|
|
# Unset TF_LOG_LEVEL so that the version file doesn't contain debug log when running
|
|
|
|
# commands that read TF_LOG_LEVEL or TFLINT_LOG, which are likely set to DEBUG when
|
|
|
|
# building the versions file
|
|
|
|
GET_VERSION_CMD="$(
|
|
|
|
unset TF_LOG_LEVEL
|
|
|
|
unset TFLINT_LOG
|
|
|
|
"${LINTER}" --version 2>&1
|
|
|
|
)"
|
2020-09-03 10:12:49 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
ERROR_CODE=$?
|
|
|
|
|
2020-11-02 15:54:26 -05:00
|
|
|
if [ ${ERROR_CODE} -ne 0 ]; then
|
2024-01-15 13:37:45 -05:00
|
|
|
fatal "[${LINTER}]: Failed to get version info. Exit code: ${ERROR_CODE}. Output: ${GET_VERSION_CMD}"
|
2020-09-03 10:12:49 -04:00
|
|
|
else
|
2024-01-15 13:37:45 -05:00
|
|
|
info "Successfully found version for ${LINTER}: ${GET_VERSION_CMD}"
|
|
|
|
if ! echo "${LINTER}: ${GET_VERSION_CMD}" >>"${VERSION_FILE}" 2>&1; then
|
|
|
|
fatal "Failed to write data to file!"
|
|
|
|
fi
|
2020-09-03 10:12:49 -04:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|