Filter on old_record
during deletes
#92
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: WALRUS tests | |
on: | |
pull_request: | |
branches: [master] | |
push: | |
branches: [master] | |
jobs: | |
autotests: | |
name: Run tests | |
runs-on: ubuntu-latest | |
container: | |
image: supabase/postgres:15.1.1.79 | |
options: --tmpfs=/pgtmpfs -e PGDATA=/pgtmpfs | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Checkout wal2json | |
uses: actions/checkout@v3 | |
with: | |
repository: eulerto/wal2json | |
ref: master | |
path: ./wal2json | |
- name: Run Test | |
run: | | |
# install wal2json | |
cd wal2json | |
apt-get update && apt-get install build-essential llvm-11 postgresql-server-dev-15 -y | |
make | |
make install | |
# run tests | |
cd .. | |
chown -R postgres /__w/walrus/walrus | |
su postgres -c 'bin/installcheck' | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: regression.out | |
path: regression.out | |
retention-days: 7 |