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 20, 2023
1 parent 4f2f658 commit 4bbe798
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/linux-build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ jobs:
sudo perl -MCPAN -e "CPAN::Shell->notest('install', 'IPC::Run')"
sudo perl -MCPAN -e "CPAN::Shell->notest('install', 'Test::Most')"
- name: Checkout TimescaleDB
uses: actions/checkout@v3

Expand Down Expand Up @@ -282,6 +283,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 4bbe798

Please sign in to comment.