-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
11 additions
and
5 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 |
---|---|---|
|
@@ -14,6 +14,17 @@ jobs: | |
steps: | ||
- name: Test details | ||
run: echo Build and test pg_quack on ${{ matrix.os }} with PostgreSQL ${{ matrix.version }} branch | ||
- name: Setup | ||
|
||
- name: ccache | ||
uses: hendrikmuhs/[email protected] | ||
with: | ||
create-symlink: true | ||
|
||
- name: Checkout pg_quack extension code | ||
uses: actions/checkout@v4 | ||
with: | ||
path: quack | ||
|
||
- name: Checkout and build PostgreSQL code | ||
run: | | ||
|
@@ -27,11 +38,6 @@ jobs: | |
./configure --prefix=$PWD/inst/ --enable-cassert --enable-debug --with-openssl | ||
make -j8 install | ||
- name: Checkout pg_quack extension code | ||
uses: actions/checkout@v4 | ||
with: | ||
path: quack | ||
|
||
- name: Build and test pg_quack extension | ||
id: regression-tests | ||
run: | | ||
|