Skip to content

Commit

Permalink
properly parameterize this.
Browse files Browse the repository at this point in the history
  • Loading branch information
eeeebbbbrrrr committed Jan 14, 2021
1 parent f03066f commit bb7db42
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/will-it-blend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@ jobs:
- name: cargo version
run: cargo --version

# Just install PG13 along with likely necessary build tools
# Just install PG along with likely necessary build tools
- name: install postgres build dependencies
run: sudo apt-get install -y clang-10 llvm-10 clang gcc make build-essential libz-dev zlib1g-dev strace libssl-dev pkg-config postgresql-13 postgresql-server-dev-13
run: sudo apt-get install -y clang-10 llvm-10 clang gcc make build-essential libz-dev zlib1g-dev strace libssl-dev pkg-config postgresql-${{ matrix.os }} postgresql-server-dev-${{ matrix.os }}

# install cargo-pgx
- name: install cargo-pgx
run: cargo install --path cargo-pgx/ --debug

# initialize pgx to use cargo-pgs
- name: cargo pgx init
run: cargo pgx init --pg13=`which pg_config`
run: cargo pgx init --pg${{ matrix.os }}=`which pg_config`

# just see if the code checks out okay
- name: cargo test
Expand Down

0 comments on commit bb7db42

Please sign in to comment.