Skip to content

Commit

Permalink
Fix promote-images-prod after splitting it out (#10292)
Browse files Browse the repository at this point in the history
## Problem
`promote-images` was split into `promote-images-dev` and
`promote-images-prod` in
#10267.

`dev` credentials were loaded in `promote-images-dev` and `prod`
credentials were loaded in `promote-images-prod`, but
`promote-images-prod` needs `dev` credentials as well to access the
`dev` images to replicate them from `dev` to `prod`.

## Summary of changes
Load `dev` credentials in `promote-images-prod` as well.
  • Loading branch information
jcgruenhage authored Jan 7, 2025
1 parent be38123 commit 4aa9786
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -979,6 +979,16 @@ jobs:
VERSIONS: v14 v15 v16 v17

steps:
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-region: eu-central-1
role-to-assume: ${{ vars.DEV_AWS_OIDC_ROLE_ARN }}
role-duration-seconds: 3600

- name: Login to Amazon Dev ECR
uses: aws-actions/amazon-ecr-login@v2

- uses: docker/login-action@v3
with:
username: ${{ secrets.NEON_DOCKERHUB_USERNAME }}
Expand Down

1 comment on commit 4aa9786

@github-actions
Copy link

Choose a reason for hiding this comment

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

7377 tests run: 7014 passed, 1 failed, 362 skipped (full report)


Failures on Postgres 16

  • test_storage_controller_many_tenants[github-actions-selfhosted]: release-x86-64
# Run all failed tests locally:
scripts/pytest -vv -n $(nproc) -k "test_storage_controller_many_tenants[release-pg16-github-actions-selfhosted]"
Flaky tests (4)

Postgres 17

Postgres 15

Postgres 14

  • test_physical_replication_config_mismatch_max_locks_per_transaction: release-arm64

Code coverage* (full report)

  • functions: 31.2% (8409 of 26962 functions)
  • lines: 48.0% (66780 of 139234 lines)

* collected from Rust tests only


The comment gets automatically updated with the latest test results
4aa9786 at 2025-01-07T15:58:06.801Z :recycle:

Please sign in to comment.