Skip to content

Commit 17bbcaa

Browse files
committed
fix(windows): Hardcode linker flags in gh actions
It looks like it may not pick up the .cargo/config.toml Signed-off-by: Daniel Schaefer <dhs@frame.work>
1 parent e2a2f5a commit 17bbcaa

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ jobs:
6363
os: windows-2025
6464
use-cross: false
6565
target: x86_64-pc-windows-msvc
66+
# TODO: Remove RUSTFLAGS workaround when framework_lib updates to built v0.8+ with gix feature.
67+
# See: .cargo/config.toml for details
6668

6769
steps:
6870
- name: Checkout
@@ -99,9 +101,9 @@ jobs:
99101

100102
- name: Build (without cross)
101103
if: matrix.build != 'freebsd' && !matrix.use-cross
102-
run: cargo build --release --locked --target ${{ matrix.target }}
104+
run: cargo build --release --locked --target ${{ matrix.target }} --verbose
103105

104106
- name: Build (cross)
105107
if: matrix.use-cross
106-
run: cross build --release --locked --target ${{ matrix.target }}
108+
run: cross build --release --locked --target ${{ matrix.target }}
107109

0 commit comments

Comments
 (0)