Commit a4e3aee 1 parent 83f07af commit a4e3aee Copy full SHA for a4e3aee
File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -67,13 +67,16 @@ 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
+ with :
74
+ packages : pkgconf
72
75
run : |
73
76
set -x
74
77
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"
78
+ test "$(pkgconf --cflags example_project)" = "-I/usr/local/include/example-project-0.1"
79
+ test "$(pkgconf --libs example_project)" = "-L/usr/local/lib/${ARCHDIR} -lexample-project"
77
80
78
81
- name : Update dynamic linker cache
79
82
if : startsWith(matrix.os, 'ubuntu')
You can’t perform that action at this time.
0 commit comments