David E. Wheeler
David E. Wheeler
Fix released in [v1.5.0](https://github.com/sqitchers/sqitch/releases/tag/v1.5.0).
We use [this Dockerfile](https://github.com/tembo-io/trunk/blob/main/cli/images/pgrx-builder/Dockerfile) to build images with each version of pgrx. Pretty simple: ```Dockerfile RUN cargo --version && cargo install cargo-pgrx --version "${PGRX_VERSION}" ``` It can no longer install...
Ah, thanks to @YohDeadfall's pointer to 3588ce9, I worked out this solution to simply add `--locked` when building 0.13.0 or 0.13.1: ```dockerfile RUN set -ex; \ if [ "$PGRX_VERSION" =...
Unfortunately I don't think this image will work for GitHub actions due to /actions/checkout#956: You can't checkout a repo unless you run as `root` in the image, and you can't...
There's also [this bit of documentation](https://docs.github.com/en/actions/creating-actions/dockerfile-support-for-github-actions#user): > Docker actions must be run by the default Docker user (root). Do not use the `USER` instruction in your `Dockerfile`, because you won't...
With the new `--runas` and `--pgdata` optoins in v0.11.3, I've updated [pgxn-tools](/pgxn/docker-pgxn-tools) with a new command, `pgrx-build-test`, does the full build/test/install/installcheck dance (`installcheck` only if it appears to be in...
It looks like you're using the [batch file](https://github.com/sqitchers/docker-sqitch/blob/main/docker-sqitch.bat), yes? I don't know much about DOS and Powershell prompts, but perhaps it has a bug in how it interprets environment variables?
Yeah, that'd be great, thank you!
Issue persists in v0.38.0 :-(