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 a6792a3 commit 8277727Copy full SHA for 8277727
.github/workflows/build-and-test/action.yaml
@@ -149,8 +149,11 @@ runs:
149
PGRX_PG_VERSION: ${{ inputs.pgrx-pg-version }}
150
PKG_PG_VERSION: ${{ inputs.pkg-pg-version }}
151
DOCKER_BUILD_USER: ${{ inputs.user }}
152
+ # We must build w/out static when on alpine
153
+ # (this fixes the libclang dynamic loading not supported error)
154
+ RUSTFLAGS: ${{ inputs.libc == 'musl' && '-Ctarget-feature=-crt-static' || '' }}
155
run: |
- cargo pgrx --version
156
+ su idkit -c "cargo install cargo-pgrx@${{ inputs.cargo-pgrx-version }}"
157
su idkit -c "just pgrx-init"
158
159
# Run cargo check
0 commit comments