Skip to content

Commit

Permalink
ci: use set-docker-config-dir from dev-actions (#9638)
Browse files Browse the repository at this point in the history
set-docker-config-dir was replicated over multiple repositories.

The replica of this action was removed from this repository and it's
using the version from github.com/neondatabase/dev-actions instead
  • Loading branch information
jcgruenhage authored Nov 8, 2024
1 parent 79929bb commit 027889b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 41 deletions.
36 changes: 0 additions & 36 deletions .github/actions/set-docker-config-dir/action.yml

This file was deleted.

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:
- uses: actions/checkout@v4

- uses: ./.github/actions/set-docker-config-dir
- uses: neondatabase/dev-actions/set-docker-config-dir@6094485bf440001c94a94a3f9e221e81ff6b6193
- uses: docker/setup-buildx-action@v3
with:
cache-binary: false
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ jobs:
with:
submodules: true

- uses: ./.github/actions/set-docker-config-dir
- uses: neondatabase/dev-actions/set-docker-config-dir@6094485bf440001c94a94a3f9e221e81ff6b6193
- uses: docker/setup-buildx-action@v3
with:
cache-binary: false
Expand Down Expand Up @@ -643,7 +643,7 @@ jobs:
with:
submodules: true

- uses: ./.github/actions/set-docker-config-dir
- uses: neondatabase/dev-actions/set-docker-config-dir@6094485bf440001c94a94a3f9e221e81ff6b6193
- uses: docker/setup-buildx-action@v3
with:
cache-binary: false
Expand Down Expand Up @@ -824,7 +824,7 @@ jobs:
curl -fL https://github.com/neondatabase/autoscaling/releases/download/$VM_BUILDER_VERSION/vm-builder -o vm-builder
chmod +x vm-builder
- uses: ./.github/actions/set-docker-config-dir
- uses: neondatabase/dev-actions/set-docker-config-dir@6094485bf440001c94a94a3f9e221e81ff6b6193
- uses: docker/login-action@v3
with:
username: ${{ secrets.NEON_DOCKERHUB_USERNAME }}
Expand Down Expand Up @@ -860,7 +860,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: ./.github/actions/set-docker-config-dir
- uses: neondatabase/dev-actions/set-docker-config-dir@6094485bf440001c94a94a3f9e221e81ff6b6193
- uses: docker/login-action@v3
with:
username: ${{ secrets.NEON_DOCKERHUB_USERNAME }}
Expand Down

1 comment on commit 027889b

@github-actions
Copy link

Choose a reason for hiding this comment

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

5428 tests run: 5193 passed, 3 failed, 232 skipped (full report)


Failures on Postgres 16

  • test_compaction_l0_memory[github-actions-selfhosted]: release-x86-64
  • test_storage_controller_many_tenants[github-actions-selfhosted]: release-x86-64
  • test_basebackup_with_high_slru_count[github-actions-selfhosted-10-13-30]: release-x86-64
# Run all failed tests locally:
scripts/pytest -vv -n $(nproc) -k "test_compaction_l0_memory[release-pg16-github-actions-selfhosted] or test_storage_controller_many_tenants[release-pg16-github-actions-selfhosted] or test_basebackup_with_high_slru_count[release-pg16-github-actions-selfhosted-10-13-30]"
Flaky tests (3)

Postgres 17

Code coverage* (full report)

  • functions: 31.7% (7864 of 24802 functions)
  • lines: 49.4% (62226 of 125944 lines)

* collected from Rust tests only


The comment gets automatically updated with the latest test results
027889b at 2024-11-08T11:56:28.331Z :recycle:

Please sign in to comment.