Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions .github/workflows/installcheck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- name: Get latest commit id of PostgreSQL 13
run: |
echo "PG_COMMIT_HASH=$(git ls-remote git://git.postgresql.org/git/postgresql.git refs/heads/REL_13_STABLE | awk '{print $1}')" >> $GITHUB_ENV
echo "PG_COMMIT_HASH=$(git ls-remote https://git.postgresql.org/git/postgresql.git refs/heads/REL_13_STABLE | awk '{print $1}')" >> $GITHUB_ENV

- name: Cache PostgreSQL 13
uses: actions/cache@v3
Expand All @@ -25,7 +25,13 @@ jobs:
- name: Install PostgreSQL 13 and some extensions
if: steps.pg13cache.outputs.cache-hit != 'true'
run: |
git clone --depth 1 --branch REL_13_STABLE git://git.postgresql.org/git/postgresql.git ~/pg13source
sudo apt-get update
sudo apt-get install -y build-essential libreadline-dev zlib1g-dev flex bison

- name: Install PostgreSQL 13 and some extensions
if: steps.pg13cache.outputs.cache-hit != 'true'
run: |
git clone --depth 1 --branch REL_13_STABLE https://git.postgresql.org/git/postgresql.git ~/pg13source
cd ~/pg13source
./configure --prefix=$HOME/pg13 CFLAGS="-std=gnu99 -ggdb -O0" --enable-cassert
make install -j$(nproc) > /dev/null
Expand All @@ -41,7 +47,7 @@ jobs:
id: build
run: |
make PG_CONFIG=$HOME/pg13/bin/pg_config install -j$(nproc)

- name: Pull and build pgvector
id: pgvector
run: |
Expand All @@ -61,4 +67,4 @@ jobs:
echo "Dump section begin."
cat $HOME/work/age/age/regress/regression.diffs
echo "Dump section end."
exit 1
exit 1
3 changes: 3 additions & 0 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ jobs:
pull-requests: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Apply branch labels
uses: actions/[email protected]

Expand Down
1 change: 1 addition & 0 deletions drivers/jdbc/lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ dependencies {

testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.3")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")

testImplementation("org.testcontainers:testcontainers:1.18.0")
testImplementation("org.postgresql:postgresql:42.6.0")
Expand Down
Loading