We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2a2f5a commit 7ea5739Copy full SHA for 7ea5739
1 file changed
.github/workflows/ci.yaml
@@ -63,6 +63,9 @@ jobs:
63
os: windows-2025
64
use-cross: false
65
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
68
+ rustflags: '-C link-arg=advapi32.lib'
69
70
steps:
71
- name: Checkout
@@ -99,9 +102,9 @@ jobs:
99
102
100
103
- name: Build (without cross)
101
104
if: matrix.build != 'freebsd' && !matrix.use-cross
- run: cargo build --release --locked --target ${{ matrix.target }}
105
+ run: cargo build --release --locked ${{ matrix.rustflags }} --target ${{ matrix.target }}
106
107
- name: Build (cross)
108
if: matrix.use-cross
- run: cross build --release --locked --target ${{ matrix.target }}
109
+ run: cross build --release --locked --target ${{ matrix.target }}
110
0 commit comments