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
2 changes: 1 addition & 1 deletion .github/workflows/package-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
pg_config --version

- name: Install cargo pgrx
run: cargo +nightly install --path cargo-pgrx --debug
run: cargo +nightly install --path cargo-pgrx --debug --locked

- name: cargo pgrx init
run: cargo +nightly pgrx init "--pg$PG_VER=$(which pg_config)"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/runas.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
rustup component add clippy

- name: Install cargo pgrx
run: cd cargo-pgrx && cargo install --path . --debug
run: cd cargo-pgrx && cargo install --path . --debug --locked

- name: cargo pgrx init
run: cargo pgrx init --pg14=$(which pg_config)
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ jobs:
rustup component add clippy

- name: Install cargo-pgrx
run: cargo install --path cargo-pgrx/ --debug --force
run: cargo install --path cargo-pgrx/ --debug --force --locked

- name: Run 'cargo pgrx init' against system-level ${{ matrix.postgres }}
run: cargo pgrx init --pg$PG_VER /usr/lib/postgresql/$PG_VER/bin/pg_config
Expand Down Expand Up @@ -390,7 +390,7 @@ jobs:
key: pgrx-arm64-cargo-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('**/Cargo.lock', '.github/workflows/tests.yml') }}

- name: Install cargo-pgrx
run: cargo install --path cargo-pgrx/ --debug --force
run: cargo install --path cargo-pgrx/ --debug --force --locked

- name: Run 'cargo pgrx init' against system-level ${{ matrix.postgres }}
run: cargo pgrx init --pg$PG_VER /usr/lib/postgresql/$PG_VER/bin/pg_config
Expand Down Expand Up @@ -494,7 +494,7 @@ jobs:
rustup component add clippy

- name: Install cargo-pgrx
run: cargo install --path cargo-pgrx/ --debug --force
run: cargo install --path cargo-pgrx/ --debug --force --locked

- name: Run 'cargo pgrx init'
run: cargo pgrx init --pg$PG_VER download
Expand Down Expand Up @@ -621,7 +621,7 @@ jobs:
rustup component add clippy

- name: Install cargo-pgrx
run: cargo install --path cargo-pgrx/ --debug --force
run: cargo install --path cargo-pgrx/ --debug --force --locked

- name: Print sccache stats
run: sccache --show-stats
Expand Down Expand Up @@ -698,7 +698,7 @@ jobs:
run: sccache --show-stats

- name: Install cargo-pgrx
run: cargo install --path cargo-pgrx/ --debug --force
run: cargo install --path cargo-pgrx/ --debug --force --locked

- name: Install rustfmt & clippy
run: |
Expand Down
Loading