-
Notifications
You must be signed in to change notification settings - Fork 177
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'reorg:master' into master
- Loading branch information
Showing
23 changed files
with
301 additions
and
233 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: make installcheck | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
test: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
pg: | ||
- 15 | ||
- 14 | ||
- 13 | ||
- 12 | ||
- 11 | ||
- 10 | ||
|
||
name: PostgreSQL ${{ matrix.pg }} | ||
runs-on: ubuntu-latest | ||
container: pgxn/pgxn-tools | ||
steps: | ||
|
||
- name: Start PostgreSQL ${{ matrix.pg }} | ||
run: pg-start ${{ matrix.pg }} | ||
|
||
- name: Install build-dependencies | ||
run: apt-get install -y liblz4-dev libreadline-dev zlib1g-dev libzstd-dev | ||
|
||
- name: Check out the repo | ||
uses: actions/checkout@v3 | ||
|
||
- name: Put pg_repack on PATH | ||
run: echo "$PWD/bin" >> $GITHUB_PATH | ||
|
||
- name: Create testts directory | ||
run: sudo -u postgres mkdir /tmp/testts | ||
|
||
- name: Create testts tablespace | ||
run: sudo -u postgres psql -c "CREATE TABLESPACE testts LOCATION '/tmp/testts'" | ||
|
||
- name: Test on PostgreSQL ${{ matrix.pg }} | ||
run: pg-build-test | ||
|
||
- name: Show regression.diffs | ||
if: ${{ failure() }} | ||
run: cat regress/regression.diffs |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "pg_repack", | ||
"abstract": "PostgreSQL module for data reorganization", | ||
"description": "Reorganize tables in PostgreSQL databases with minimal locks", | ||
"version": "1.4.6", | ||
"version": "1.4.8", | ||
"maintainer": [ | ||
"Beena Emerson <[email protected]>", | ||
"Josh Kupershmidt <[email protected]>", | ||
|
@@ -15,7 +15,7 @@ | |
"provides": { | ||
"pg_repack": { | ||
"file": "lib/pg_repack.sql", | ||
"version": "1.4.6", | ||
"version": "1.4.8", | ||
"abstract": "Reorganize tables in PostgreSQL databases with minimal locks" | ||
} | ||
}, | ||
|
@@ -27,7 +27,7 @@ | |
} | ||
}, | ||
"resources": { | ||
"homepage": "http://reorg.github.com/pg_repack", | ||
"homepage": "https://reorg.github.io/pg_repack", | ||
"bugtracker": { | ||
"web": "https://github.com/reorg/pg_repack/issues" | ||
}, | ||
|
@@ -39,6 +39,6 @@ | |
}, | ||
"meta-spec": { | ||
"version": "1.0.0", | ||
"url": "http://pgxn.org/meta/spec.txt" | ||
"url": "https://pgxn.org/meta/spec.txt" | ||
} | ||
} |
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.