We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4e3aee commit 24de384Copy full SHA for 24de384
.github/workflows/example-project.yml
@@ -67,11 +67,14 @@ jobs:
67
test "$(pkg-config --cflags example_project)" = "-I/usr/local/include/example-project-0.1"
68
test "$(pkg-config --libs example_project)" = "-L/usr/local/lib -lexample-project"
69
70
- - name: Test pkgconf
+ - name: Install pkgconf
71
if: startsWith(matrix.os, 'ubuntu')
72
uses: awalsh128/cache-apt-pkgs-action@latest
73
with:
74
packages: pkgconf
75
+
76
+ - name: Test pkgconf
77
+ if: startsWith(matrix.os, 'ubuntu')
78
run: |
79
set -x
80
ARCHDIR=`dpkg-architecture -qDEB_HOST_MULTIARCH`
0 commit comments