Skip to content

Patch via Makefile

Patch via Makefile #33

Workflow file for this run

name: Test1
on:
push:
branches:
- "**"
pull_request:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
Test:
runs-on: ubuntu-latest
container:
image: ghcr.io/postgres-dev/ubuntu-22.04:1.0
env:
PG_BRANCH: REL_14_STABLE
steps:
- 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 patches
run: |
pwd
ls
ls ..
echo ls ../postgres
ls ../postgres
make patch
working-directory: ptrack