Skip to content

Commit

Permalink
ci: dbg
Browse files Browse the repository at this point in the history
  • Loading branch information
markokr committed Apr 6, 2024
1 parent 40e4ea7 commit cbf95f0
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
matrix:
test:
- {pgver: "12", os: "ubuntu-latest"}
- {pgver: "14", os: "ubuntu-latest"}
- {pgver: "16", os: "ubuntu-latest"}
- {pgver: "16", os: "macos-latest"}
#- {pgver: "14", os: "ubuntu-latest"}
#- {pgver: "16", os: "ubuntu-latest"}
#- {pgver: "16", os: "macos-latest"}
steps:
- name: "Checkout"
uses: actions/checkout@v4
Expand Down Expand Up @@ -148,7 +148,10 @@ jobs:
shell: bash
run: |
./autogen.sh
./configure --prefix=${GITHUB_WORKSPACE}/testinstall
./configure --prefix=${GITHUB_WORKSPACE}/testinstall || {
tail -n 200 config.log
exit 1
}
make
make install
./pgqd -V
Expand Down

0 comments on commit cbf95f0

Please sign in to comment.