Alex Couture-Beil
Alex Couture-Beil
> which seems incorrect. most definitely not correct: ``` git checkout v0.7.0 echo "VERSION 0.8 FROM alpine ARG EARTHLY_GIT_REFS RUN env | grep EARTHLY " > Earthfile earthly-v0.8.2 +base ```...
Can you clarify if this is only encountered when `--push` is specified? Does it occur without the `--push` too?
from https://github.com/earthly/earthly/pull/3805#issuecomment-1957765574 > This error may happen when the git image is [overridden in the Earthly config](https://docs.earthly.dev/docs/earthly-config#git_image).
This appears to be working as intended, as it follows the same logic of when a `SAVE IMAGE --push ...` is actually pushed. from https://docs.earthly.dev/docs/earthfile#what-is-being-output-and-pushedpushed : > What is being...
I'm still trying to understand your use-case. If you have an intermediate target that needs to perform some sort of optimization, (e.g. using the `-O3` flag if you're compiling c),...
The reasoning (as documented under "What is being output and pushed"), can be summarised by this example: ``` VERSION 0.8 FROM alpine RUN apk add gcc foo: RUN echo foo...
that's interesting that even with the explicit `BUILD +target`, it didn't set the target to be a push. The current behaviour might contain a data race, for example consider calling...
When I ran this, it does work, and I get: ``` debug3: load_hostkeys_file: loaded 1 keys from ssh.dev.azure.com debug1: load_hostkeys: fopen /etc/ssh/ssh_known_hosts: No such file or directory debug1: load_hostkeys: fopen...
This issue might be related to: ``` debug1: read_passphrase: can't open /dev/tty: No such device or address ``` How does earthly work with a passphrase ssh key?
Thanks for the report; earthly performs parsing of the comments to make the `earthly doc` command work; however it's expected behaviour is not to fail on a single quote. unfortunately...