We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents aeaebec + a1414c8 commit b06f729Copy full SHA for b06f729
.github/workflows/ci.yml
@@ -43,8 +43,8 @@ jobs:
43
- name: Verify that we are in an environment with limited dev tools
44
run: |
45
set -x
46
- for pattern in cmake g++ libssl-dev make pkgconf pkg-config; do
47
- if dpkg-query --status -- "$pattern"; then
+ for package in cmake g++ libssl-dev make pkgconf pkg-config; do
+ if dpkg-query --status -- "$package"; then
48
exit 1
49
fi
50
done
@@ -64,6 +64,9 @@ jobs:
64
pattern='.*\b(-sys|cc|cmake|pkg-config|vcpkg)\b.*'
65
! GREP_COLORS='ms=30;48;5;214' grep --color=always -Ex -C 1000000 -e "$pattern" tree.txt
66
continue-on-error: true
67
+ - name: Check for unrecognized *-sys dependencies
68
+ run: |
69
+ ! grep -qP '(?<!\blinux-raw)-sys\b' tree.txt
70
- name: Wrap cc1 (and cc1plus if present) to record calls
71
72
cat >/usr/local/bin/wrapper1 <<'EOF'
0 commit comments