build: add version information to logs #1159
Merged
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.
Issue
The circle.yml
push
job outputs no information about the versions of Node.js, Docker and Buildx used to build and push Cypress Docker images.Documentation provided on the CircleCI website regarding the content of the Ubuntu machine images is incomplete. Starting with Docker Engine 23.0 Buildx is distributed in a separate package
docker-buildx-plugin
. Since the CircleCI documentation does not list the configured version of Buildx, it is only possible to determine it by inspection of the machine image.Change
Add logging information for the versions of Node.js, Docker and Buildx used in the
push
job to the circle.yml workflow.Providing this information enables better lookup of the correct release note and other documentation when attempting to resolve possible build issues or when modifying the build process.