Skip to content

Commit

Permalink
Fix upload test results for macos regression CI
Browse files Browse the repository at this point in the history
  • Loading branch information
antekresic committed Dec 21, 2023
1 parent 4f2f658 commit 2f6d1b6
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/linux-build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,10 @@ jobs:
GITHUB_PR_NUMBER=0
fi
export GITHUB_PR_NUMBER
PSQL="${HOME}/${PG_INSTALL_DIR}/bin/psql"
export PSQL
if [[ "${{ runner.os }}" == "macOS" ]] ;
then
# Add libpq to PATH so psql can be used for uploading
# test results
export PATH="/usr/local/opt/libpq/bin:$PATH"
fi
scripts/upload_ci_stats.sh

0 comments on commit 2f6d1b6

Please sign in to comment.