-
-
Notifications
You must be signed in to change notification settings - Fork 676
CI: Upload test stats as artifacts, improve output of "List Docker images" #36970
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
10df873
tox.ini [DOCKER_BUILDKIT=1]: Do not attempt to retrieve a failed cont…
mkoeppe 8cd1147
tox.ini (docker): Move copying of logs from container here from .gith…
mkoeppe 5537a82
tox.ini (docker): Only append to Dockertags if BUILD_TAG is set
mkoeppe b4e6ac7
.github/workflows/docker.yml: Show Docker images as annotations, show…
mkoeppe eba5a06
build/pkgs/info: Update to 7.0.3
mkoeppe a19a348
.github/workflows/docker.yml: Improve wording of Docker instructions
mkoeppe 4826a15
tox.ini (docker): Record successful pushes in Dockertags.pushed
mkoeppe bf28d20
.github/workflows/docker.yml: Use Dockertags.pushed
mkoeppe e299243
.github/workflows/docker.yml: Add instructions for the case that no D…
mkoeppe 755fd97
.github/workflows/docker.yml: Fix up
mkoeppe 358909a
tox.ini (docker), build/bin/write-dockerfile.sh [DOCKER_BUILDKIT=1]: …
mkoeppe 415ecad
tox.ini (docker): Make DOCKER_BUILDKIT=1 the default
mkoeppe 78f9f2e
.github/workflows/docker.yml: Don't put tox venv in LOGS_ARTIFACT
mkoeppe File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
tarball=texinfo-VERSION.tar.xz | ||
sha1=ce3776715e655400485381b8ae94e34c5632e729 | ||
md5=a91b404e30561a5df803e6eb3a53be71 | ||
cksum=3632265516 | ||
sha1=356a623b88401d7c993408f33450c8104aad9df8 | ||
md5=37bf94fd255729a14d4ea3dda119f81a | ||
cksum=1448415744 | ||
upstream_url=https://ftp.gnu.org/gnu/texinfo/texinfo-VERSION.tar.xz |
This file contains hidden or 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 |
---|---|---|
@@ -1 +1 @@ | ||
6.8 | ||
7.0.3 |
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Out of curiosity, how does this trick avoid the problem of "With buildkit we cannot retrieve failed builds."?
How is "failed build" different from "exit" with nonzero status?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
By having the next build stage fail at the beginning, instead of failing the current one.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
so that the previous stage remains in the container and the current one discarded...
OK.