diff --git a/.ci/check.sh b/.ci/check.sh index b81f90b5c..4895a02db 100755 --- a/.ci/check.sh +++ b/.ci/check.sh @@ -39,6 +39,6 @@ if [ "${untagged_todo}" ]; then fi echo -e "\n${ANSI_GREEN}Luacheck results${ANSI_RESET}" -luacheck -q {reader,setupkoenv,datastorage}.lua frontend plugins spec || exit_code=1 +luacheck ${PARALLEL_JOBS:+-j "${PARALLEL_JOBS}"} -q {reader,setupkoenv,datastorage}.lua frontend plugins spec || exit_code=1 exit ${exit_code} diff --git a/.circleci/config.yml b/.circleci/config.yml index 0587f5d7f..5c71a84b2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -39,7 +39,8 @@ jobs: CLICOLOR_FORCE: "1" EMULATE_READER: "1" KODEBUG: "" - MAKEFLAGS: "PARALLEL_JOBS=3 OUTPUT_DIR=build INSTALL_DIR=install" + MAKEFLAGS: "OUTPUT_DIR=build INSTALL_DIR=install" + PARALLEL_JOBS: "3" steps: # Checkout / fetch. {{{ - checkout