Skip to content

Commit 51f7cbf

Browse files
committed
ci: pin cargo-c version in pkg-config workflow
The recent release seems to be causing a regression. Until we've had a chance to dig into the root cause let's pin the version in-use in CI to keep the build passing. I also snuck in an update to print the pkg-config version in-use. I was interested in that data when I wasn't sure if it was the cargo-c update that changed things or if there was an unrelated system image update that bork'd it.
1 parent 5d445f9 commit 51f7cbf

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/pkg-config.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,13 @@ jobs:
3333
if: runner.os == 'macos-latest'
3434
run: brew install pkg-config
3535

36+
- name: Show pkg-config version
37+
run: pkg-config --version
38+
3639
- name: Install cargo-c (Ubuntu)
3740
if: matrix.os == 'ubuntu-latest'
3841
env:
39-
LINK: https://github.com/lu-zero/cargo-c/releases/latest/download
42+
LINK: https://github.com/lu-zero/cargo-c/releases/download/v0.9.32
4043
CARGO_C_FILE: cargo-c-x86_64-unknown-linux-musl.tar.gz
4144
run: |
4245
curl -L $LINK/$CARGO_C_FILE | tar xz -C ~/.cargo/bin

0 commit comments

Comments
 (0)