We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fde4f02 commit da0c923Copy full SHA for da0c923
.github/workflows/test.yml
@@ -36,7 +36,13 @@ jobs:
36
- name: Run tests
37
run: |
38
export PATH="/usr/lib/postgresql/${{ matrix.pg-version }}/bin:$PATH"
39
- # Allow postgres user to write test results
40
- sudo mkdir -p test/results
41
- sudo chown -R postgres:postgres test/
42
- sudo -u postgres make installcheck || (cat test/results/*.diff 2>/dev/null; exit 1)
+ # Debug: show directory structure and permissions
+ pwd
+ ls -la
+ ls -la test/
43
+ id
44
+ # Give full permissions to the workspace
45
+ sudo chmod -R 777 .
46
+ sudo ls -la test/
47
+ # Run as postgres user from a directory it can access
48
+ sudo -u postgres env PATH="$PATH" make installcheck || (cat test/results/*.diff 2>/dev/null; exit 1)
0 commit comments