Skip to content

Commit

Permalink
install tiny-pkg-config for windows ci
Browse files Browse the repository at this point in the history
  • Loading branch information
cpunion committed Nov 19, 2024
1 parent 14834c8 commit 485eab9
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,13 @@ jobs:
Libs: -L${libdir} -lpython313
Cflags: -I${includedir}
EOF
- name: Install tiny-pkg-config for windows (patch)
if: matrix.sys.os == 'windows-latest'
run: |
curl -L https://github.com/cpunion/tiny-pkg-config/releases/download/v0.2.0/tiny-pkg-config_Windows_x86_64.zip -o /tmp/tiny-pkg-config.zip
unzip /tmp/tiny-pkg-config.zip -d $HOME/bin
mv $HOME/bin/tiny-pkg-config.exe $HOME/bin/pkg-config.exe
- name: Build
run: go install -v ./...
Expand Down

0 comments on commit 485eab9

Please sign in to comment.