Commit c829067 1 parent 83f07af commit c829067 Copy full SHA for c829067
File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -67,13 +67,15 @@ jobs:
67
67
test "$(pkg-config --cflags example_project)" = "-I/usr/local/include/example-project-0.1"
68
68
test "$(pkg-config --libs example_project)" = "-L/usr/local/lib -lexample-project"
69
69
70
- - name : Test pkg-config
70
+ - name : Test pkgconf
71
71
if : startsWith(matrix.os, 'ubuntu')
72
+ uses : awalsh128/cache-apt-pkgs-action@latest
73
+ packages : pkgconf
72
74
run : |
73
75
set -x
74
76
ARCHDIR=`dpkg-architecture -qDEB_HOST_MULTIARCH`
75
- test "$(pkg-config --cflags example_project)" = "-I/usr/local/include/example-project-0.1"
76
- test "$(pkg-config --libs example_project)" = "-L/usr/local/lib/${ARCHDIR} -lexample-project"
77
+ test "$(pkgconf --cflags example_project)" = "-I/usr/local/include/example-project-0.1"
78
+ test "$(pkgconf --libs example_project)" = "-L/usr/local/lib/${ARCHDIR} -lexample-project"
77
79
78
80
- name : Update dynamic linker cache
79
81
if : startsWith(matrix.os, 'ubuntu')
You can’t perform that action at this time.
0 commit comments