Skip to content

Commit

Permalink
Get Postgres
Browse files Browse the repository at this point in the history
  • Loading branch information
postgres-dev committed Jul 25, 2023
1 parent 8bd6848 commit 150aa68
Showing 1 changed file with 20 additions and 7 deletions.
27 changes: 20 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,26 @@ jobs:
Test:
runs-on: ubuntu-latest
container:
image: alpine
image: ghcr.io/postgres-dev/ubuntu-22.04:1.0
env:
PG_BRANCH: REL_15
# volumes:
# - ${{ github.workspace }}:/work
PG_BRANCH: REL_14_STABLE

steps:
- uses: actions/checkout@v2
- name: Build the Docker image
- name: Get Postgres sources
uses: actions/checkout@v3
with:
repository: postgres/postgres
# ref: ${{ env.PG_BRANCH }}
ref: REL_14_STABLE
path: postgres

- name: Get Ptrack sources
uses: actions/checkout@v3
with:
path: ptrack

- name: Apply ptrack patch
run: |
ls -l
echo var=${PG_BRANCH}
git apply --verbose --3way ../ptrack/patches/${PG_BRANCH}-ptrack-core.diff
working-directory: postgres

0 comments on commit 150aa68

Please sign in to comment.