We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 756974f commit 00f0fc5Copy full SHA for 00f0fc5
.github/workflows/example-project.yml
@@ -23,7 +23,7 @@ jobs:
23
24
steps:
25
- name: Clone Git repository
26
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
27
28
- name: Install Rust
29
uses: dtolnay/rust-toolchain@stable
@@ -70,6 +70,9 @@ jobs:
70
- name: Test pkg-config
71
if: startsWith(matrix.os, 'ubuntu')
72
run: |
73
+ cat /usr/local/lib/pkgconfig/example_project.pc
74
+ echo $(pkg-config --cflags example_project)
75
+ echo $(pkg-config --libs example_project)
76
set -x
77
ARCHDIR=`dpkg-architecture -qDEB_HOST_MULTIARCH`
78
test "$(pkg-config --cflags example_project)" = "-I/usr/local/include/example-project-0.1"
0 commit comments