From d57d7816ace69b896e89ca19e0738837521598d6 Mon Sep 17 00:00:00 2001 From: gindibay Date: Wed, 12 Jul 2023 22:30:12 +0300 Subject: [PATCH] Parameterizes safe directory --- .github/workflows/packaging-test-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/packaging-test-pipelines.yml b/.github/workflows/packaging-test-pipelines.yml index c6938e09a..f0229fd71 100644 --- a/.github/workflows/packaging-test-pipelines.yml +++ b/.github/workflows/packaging-test-pipelines.yml @@ -76,7 +76,7 @@ jobs: - name: Make run: | set -ex - git config --global --add safe.directory /__w/citus/citus + git config --global --add safe.directory ${GITHUB_WORKSPACE} make CFLAGS="-Wno-missing-braces" -sj$(cat /proc/cpuinfo | grep "core id" | wc -l) 2>&1 | tee -a output.log # Check the exit code of the make command @@ -159,7 +159,7 @@ jobs: - name: Make run: | set -ex - git config --global --add safe.directory /__w/citus/citus + git config --global --add safe.directory ${GITHUB_WORKSPACE} make -sj$(cat /proc/cpuinfo | grep "core id" | wc -l) 2>&1 | tee -a output.log # Check the exit code of the make command