Skip to content

Commit

Permalink
ci: install header files to fix test build
Browse files Browse the repository at this point in the history
  • Loading branch information
dvarrazzo committed Sep 10, 2023
1 parent cfe8299 commit b1e363b
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,18 @@ concurrency:

jobs:
tests:
strategy:
matrix:
pg: [12, 11, 10, 9.6, 9.5, 9.4, 9.3, 9.2]
runs-on: ubuntu-latest
container: pgxn/pgxn-tools
strategy:
fail-fast: false
matrix:
pg: [16, 15, 14, 13, 12, 11, 10]
steps:
- run: pg-start ${{ matrix.pg }}
- uses: actions/checkout@v3
- run: pg-build-test
- name: Start PostgreSQL ${{ matrix.pg }}
run: pg-start ${{ matrix.pg }}
- name: Check out the repo
uses: actions/checkout@v3
- name: install GMP dev library
run: apt-get update && apt-get install -y libgmp-dev
- name: Test on PostgreSQL ${{ matrix.pg }}
run: pg-build-test

0 comments on commit b1e363b

Please sign in to comment.