Skip to content

Commit

Permalink
Merge branch 'main' of github.com:hydradatabase/hydra into spec-insert
Browse files Browse the repository at this point in the history
  • Loading branch information
JerrySievert committed Oct 12, 2023
2 parents 54ba6ee + 9462f75 commit 50e38d4
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,16 @@ jobs:
TEST_AWS_REGION: us-east-1
TEST_AWS_S3_BUCKET: hydra-test-fixtures
run: make postgres_pull_upgrade_image postgres_acceptance_test
- name: tgz container logs
if: failure()
run: |
tar -czf /tmp/test_results.tar.gz ${{ env.TEST_ARTIFACT_DIR }}
- name: Upload test container logs
if: failure()
uses: actions/upload-artifact@v3
with:
name: postgres_${{ matrix.postgres }}_container_logs
path: ${{ env.TEST_ARTIFACT_DIR }}
path: /tmp/test_results.tar.gz
retention-days: 7
- name: Bake multi-platform Postgres
if: github.ref == 'refs/heads/main'
Expand Down
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

FROM postgres_base

# workaround for https://github.com/docker-library/postgres/issues/1112
RUN echo en_US.UTF-8 UTF-8 >> /etc/locale.gen

RUN set -eux; \
apt-get update; \
apt-get install -y --no-install-recommends \
Expand Down
2 changes: 1 addition & 1 deletion third-party/pgxman/pgxman_13.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ extensions:
- name: "pg_ivm"
version: "1.5.1"
- name: "pgvector"
version: "0.4.4"
version: "0.5.1"
- name: "pg_hint_plan-13"
version: "1.3.8-1"
2 changes: 1 addition & 1 deletion third-party/pgxman/pgxman_14.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ extensions:
- name: "pg_ivm"
version: "1.5.1"
- name: "pgvector"
version: "0.4.4"
version: "0.5.1"
- name: "pg_hint_plan-14"
version: "1.4.1-1"
2 changes: 1 addition & 1 deletion third-party/pgxman/pgxman_14_spilo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ extensions:
- name: "pg_ivm"
version: "1.5.1"
- name: "pgvector"
version: "0.4.4"
version: "0.5.1"
- name: "pg_hint_plan-14"
version: "1.4.1-1"
2 changes: 1 addition & 1 deletion third-party/pgxman/pgxman_15.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ extensions:
- name: "pg_ivm"
version: "1.5.1"
- name: "pgvector"
version: "0.4.4"
version: "0.5.1"
- name: "pg_hint_plan-15"
version: "1.5.0-1"

0 comments on commit 50e38d4

Please sign in to comment.