-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into NT-V2_0_2
- Loading branch information
Showing
8 changed files
with
61 additions
and
2,740 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,23 @@ | ||
# This workflow will build & run tests | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
|
||
jobs: | ||
test: | ||
strategy: | ||
matrix: | ||
pg: [ 16, 15, 14, 13, 12, 11 ] | ||
name: 🐘 PostgreSQL ${{ matrix.pg }} | ||
runs-on: ubuntu-latest | ||
container: pgxn/pgxn-tools | ||
steps: | ||
- name: Start PostgreSQL ${{ matrix.pg }} | ||
run: pg-start ${{ matrix.pg }} | ||
- name: Check out the repo | ||
uses: actions/checkout@v3 | ||
- name: Test on PostgreSQL ${{ matrix.pg }} | ||
run: pg-build-test |
This file was deleted.
Oops, something went wrong.
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_roaringbitmap", | ||
"abstract": "A Roaring Bitmap data type", | ||
"description": "This library contains a single PostgreSQL extension, a Roaring Bitmap data type called 'roaringbitmap', along with some convenience opperators and functions for constructing and handling Roaring Bitmap.", | ||
"version": "0.5.4", | ||
"version": "0.6.0", | ||
"maintainer": [ | ||
"Chen Huajun <[email protected]>" | ||
], | ||
|
@@ -12,7 +12,7 @@ | |
"abstract": "A Roaring Bitmap data type", | ||
"file": "roaringbitmap--0.5.sql", | ||
"docfile": "README.md", | ||
"version": "0.5.4" | ||
"version": "0.6.0" | ||
} | ||
}, | ||
"resources": { | ||
|
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
Oops, something went wrong.