Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
run: |
port=$(pg_lsclusters | awk '$1 == "${{ matrix.pg }}" && $2 == "main" { print $3 }')
# let the postgres user reach and write the workspace
sudo chmod a+x /home/runner /home/runner/work /home/runner/work/PL-php
sudo chmod a+x /home/runner /home/runner/work "$(dirname "$GITHUB_WORKSPACE")"
chmod -R a+rwX .
sudo -u postgres env PGPORT=$port \
make PG_CONFIG=/usr/lib/postgresql/${{ matrix.pg }}/bin/pg_config installcheck
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
- name: Run the regression tests under ASAN
run: |
port=$(pg_lsclusters | awk '$1 == 18 && $2 == "main" { print $3 }')
sudo chmod a+x /home/runner /home/runner/work /home/runner/work/PL-php
sudo chmod a+x /home/runner /home/runner/work "$(dirname "$GITHUB_WORKSPACE")"
chmod -R a+rwX .
# the cookbook test needs SimpleXML, unavailable with extensions off
tests=$(grep '^REGRESS' Makefile | sed 's/REGRESS = //; s/ cookbook//')
Expand Down
Loading