Skip to content

Commit

Permalink
Merge branch 'reorg:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
ncleaton authored Mar 25, 2023
2 parents a24e46c + 7eaa988 commit 148f896
Show file tree
Hide file tree
Showing 23 changed files with 301 additions and 233 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/regression.yml
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
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
# Travis CI configuration file for psycopg2

dist: xenial
dist: focal
sudo: required

env:
- PGVER=14
- PGVER=13
- PGVER=12
- PGVER=11
- PGVER=10
# Disabled because packages broken at least on xenial
# https://www.postgresql.org/message-id/CA%2Bmi_8a1oEnCzkt0CvqysgY4MQ6jEefjmS%3Dq_K-AvOx%3DF7m2%2BQ%40mail.gmail.com
# - PGVER=9.6
- PGVER=9.6
- PGVER=9.5
- PGVER=9.4

Expand Down
8 changes: 4 additions & 4 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -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]>",
Expand All @@ -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"
}
},
Expand All @@ -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"
},
Expand All @@ -39,6 +39,6 @@
},
"meta-spec": {
"version": "1.0.0",
"url": "http://pgxn.org/meta/spec.txt"
"url": "https://pgxn.org/meta/spec.txt"
}
}
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pg_repack -- Reorganize tables in PostgreSQL databases with minimal locks
=========================================================================

- Homepage: https://reorg.github.com/pg_repack
- Homepage: https://reorg.github.io/pg_repack
- Download: https://pgxn.org/dist/pg_repack/
- Development: https://github.com/reorg/pg_repack
- Bug Report: https://github.com/reorg/pg_repack/issues
Expand All @@ -22,7 +22,7 @@ CLUSTER directly.
Please check the documentation (in the ``doc`` directory or online_) for
installation and usage instructions.

.. _pg_repack: https://reorg.github.com/pg_repack
.. _pg_repack: https://reorg.github.io/pg_repack
.. _CLUSTER: https://www.postgresql.org/docs/current/static/sql-cluster.html
.. _VACUUM FULL: VACUUM_
.. _VACUUM: https://www.postgresql.org/docs/current/static/sql-vacuum.html
Expand Down
62 changes: 0 additions & 62 deletions SPECS/pg_repack84.spec

This file was deleted.

67 changes: 0 additions & 67 deletions SPECS/pg_repack90.spec

This file was deleted.

Loading

0 comments on commit 148f896

Please sign in to comment.