Skip to content

Commit

Permalink
Fullpath to .pgrx
Browse files Browse the repository at this point in the history
  • Loading branch information
theory committed Apr 4, 2024
1 parent f95bb84 commit 5b55250
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/lint-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
- name: Setup Rust Toolchain
uses: dtolnay/rust-toolchain@stable
with: { components: "rustfmt, clippy" }
- name: Setup Cache
- name: Setup Rust Cache
uses: Swatinem/rust-cache@v2
with: { cache-directories: ~/.pgrx }
with: { cache-directories: /home/runner/.pgrx }
- name: Install Postgres
run: sudo ./.ci/apt-install-postgres ${{ env.PGVERSION }}
- name: Install pgrx
Expand All @@ -34,17 +34,17 @@ jobs:
strategy:
matrix:
pg: [11, 12, 13, 14, 15, 16]
os: [[🐧, Ubuntu]] # , [🍎, macOS], [πŸͺŸ, Windows]]
os: [[🐧, Ubuntu]] # [🍎, macOS], [πŸͺŸ, Windows]]
name: 🐘 Postgres ${{ matrix.pg }} on ${{ matrix.os[0] }} ${{ matrix.os[1] }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup Rust Toolchain
uses: dtolnay/rust-toolchain@stable
- name: Install Postgres ${{ matrix.pg }}
run: sudo ./.ci/apt-install-postgres ${{ matrix.pg }}
- name: Setup Rust Cache
uses: Swatinem/rust-cache@v2
with: { cache-directories: ~/.pgrx }
with: { cache-directories: /home/runner/.pgrx }
- run: env
- name: Install pgrx
run: cargo install cargo-pgrx --locked --version "$(perl -ne 'print $1 if /^pgrx\s+=\s"=?([^"]+)/' Cargo.toml)"
Expand Down

0 comments on commit 5b55250

Please sign in to comment.