From eb96bec4bbbf55266b89d50a36a85b8caaa9a9fb Mon Sep 17 00:00:00 2001 From: James McCoy Date: Fri, 13 Nov 2020 11:22:24 -0500 Subject: [PATCH] ci/before_script.sh: Remove early exit for lint job lualint requires building dependencies, so allow the job to take advantage of the cache. --- ci/before_script.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ci/before_script.sh b/ci/before_script.sh index 1759dbe942..8bab1c4e17 100755 --- a/ci/before_script.sh +++ b/ci/before_script.sh @@ -3,10 +3,6 @@ set -e set -o pipefail -if [[ "${CI_TARGET}" == lint ]]; then - exit -fi - CI_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" source "${CI_DIR}/common/build.sh"