Skip to content

Commit

Permalink
CI: downgrade docker/setup-buildx-action (#8062)
Browse files Browse the repository at this point in the history
## Problem

I've bumped `docker/setup-buildx-action` in #8042 because I wasn't able
to reproduce the issue from #7445.
But now the issue appears again in
https://github.com/neondatabase/neon/actions/runs/9514373620/job/26226626923?pr=8059
The steps to reproduce aren't clear, it required
`docker/setup-buildx-action@v3` and rebuilding the image without cache,
probably

## Summary of changes
- Downgrade `docker/setup-buildx-action@v3` 
to `docker/setup-buildx-action@v2`
  • Loading branch information
bayandin authored Jun 14, 2024
1 parent a71f58e commit 83eb02b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-build-tools-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
mkdir -p /tmp/.docker-custom
echo DOCKER_CONFIG=/tmp/.docker-custom >> $GITHUB_ENV
- uses: docker/setup-buildx-action@v3
- uses: docker/setup-buildx-action@v2

- uses: docker/login-action@v2
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -744,7 +744,7 @@ jobs:
run: |
mkdir -p .docker-custom
echo DOCKER_CONFIG=$(pwd)/.docker-custom >> $GITHUB_ENV
- uses: docker/setup-buildx-action@v3
- uses: docker/setup-buildx-action@v2

- uses: docker/login-action@v3
with:
Expand Down Expand Up @@ -822,11 +822,11 @@ jobs:
run: |
mkdir -p .docker-custom
echo DOCKER_CONFIG=$(pwd)/.docker-custom >> $GITHUB_ENV
- uses: docker/setup-buildx-action@v3
- uses: docker/setup-buildx-action@v2
with:
# Disable parallelism for docker buildkit.
# As we already build everything with `make -j$(nproc)`, running it in additional level of parallelisam blows up the Runner.
buildkitd-config-inline: |
config-inline: |
[worker.oci]
max-parallelism = 1
Expand Down

1 comment on commit 83eb02b

@github-actions
Copy link

@github-actions github-actions bot commented on 83eb02b Jun 14, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

3334 tests run: 3183 passed, 0 failed, 151 skipped (full report)


Flaky tests (3)

Postgres 15

  • test_backward_compatibility: release

Postgres 14

  • test_storage_controller_many_tenants[github-actions-selfhosted]: release
  • test_pageserver_restarts_under_worload: release

Code coverage* (full report)

  • functions: 31.5% (6633 of 21063 functions)
  • lines: 48.6% (51620 of 106296 lines)

* collected from Rust tests only


The comment gets automatically updated with the latest test results
83eb02b at 2024-06-14T16:39:28.358Z :recycle:

Please sign in to comment.