We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34a1307 commit 59b5ddfCopy full SHA for 59b5ddf
.github/workflows/job-pg-query-extension.yml
@@ -82,13 +82,15 @@ jobs:
82
83
- name: Install PIE
84
run: |
85
- composer global require php/pie
+ curl -L -o /usr/local/bin/pie https://github.com/php/pie/releases/latest/download/pie.phar
86
+ chmod +x /usr/local/bin/pie
87
+ pie --version
88
89
- name: Install extension via PIE
90
working-directory: src/extension/pg-query-ext
91
- ~/.composer/vendor/bin/pie build .
- sudo ~/.composer/vendor/bin/pie install .
92
+ pie build .
93
+ sudo pie install .
94
95
- name: Verify extension is loaded
96
0 commit comments