Skip to content

Commit 7d84fda

Browse files
committed
ga build
1 parent 7741904 commit 7d84fda

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
4545
- name: Install pgrx
4646
run: |
47-
cargo install --locked cargo-pgrx --version 0.12.9 || true
47+
cargo install --locked cargo-pgrx --version 0.13.1 || true
4848
cargo pgrx init
4949
env:
5050
CARGO_HTTP_TIMEOUT: 300
@@ -55,7 +55,13 @@ jobs:
5555
cargo fmt --all -- --check
5656
cargo clippy --all -- -D warnings
5757
58-
- name: Build Extension
58+
- name: Build Extension (Windows)
59+
if: runner.os == 'Windows'
60+
run: |
61+
cargo pgrx package --target x86_64-pc-windows-msvc
62+
63+
- name: Build Extension (Other OS)
64+
if: runner.os != 'Windows'
5965
run: cargo pgrx package
6066

6167
- name: Upload Extension Artifact
@@ -92,4 +98,4 @@ jobs:
9298
target
9399
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
94100
restore-keys: |
95-
${{ runner.os }}-cargo-
101+
${{ runner.os }}-cargo-

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ pg16 = ["pgrx/pg16", "pgrx-tests/pg16" ]
1515
pg_test = []
1616

1717
[dependencies]
18-
pgrx = "0.12.9"
18+
pgrx = "0.13.1"
1919
sqids = "0.4.2"
20-
thiserror = "2.0.8"
20+
thiserror = "2.0.12"
2121

2222
[dev-dependencies]
23-
pgrx-tests = "0.12.9"
23+
pgrx-tests = "0.13.1"
2424

2525
[profile.dev]
2626
panic = "unwind"

0 commit comments

Comments
 (0)