-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Re earthly/earthly#3713 There are two ways to solve this, one is adding RawOutput bool to DeltaLog and wiring it through. That would change the logstream api. This is the other solution, which is simple but hacky. We just check for `--raw-output` on the command before printing. @alexcb suggested starting here.
- Loading branch information
1 parent
bf607d2
commit ad7f6b9
Showing
8 changed files
with
53 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
VERSION 0.8 | ||
FROM --pass-args ..+base | ||
|
||
IMPORT .. AS tests | ||
|
||
WORKDIR /test | ||
|
||
test-all: | ||
DO tests+RUN_EARTHLY --earthfile=manifest.earth --target=+gha | ||
RUN acbgrep '^::group::' earthly.output | ||
RUN acbgrep -v '^should have prefix' earthly.output | ||
RUN acbgrep '^::endgroup::' earthly.output |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
VERSION --raw-output 0.8 | ||
|
||
FROM alpine | ||
|
||
gha: | ||
RUN --no-cache --raw-output echo "::group:: build something group 1" | ||
RUN echo "should have prefix" | ||
RUN --no-cache --raw-output echo "::endgroup::" |