We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d11750 commit 0f91268Copy full SHA for 0f91268
.github/workflows/freebsd.yml
@@ -70,9 +70,10 @@ jobs:
70
test -f scripts/sniproxy.rc
71
72
# Smoke test: start sniproxy with a test config
73
+ # cross-platform-actions runs as uid 1001 (runner), not root,
74
+ # so omit user directive (can't drop privileges without root)
75
echo "Running as: $(whoami) (uid=$(id -u))"
76
printf '%s\n' \
- 'user nobody' \
77
'error_log { syslog daemon }' \
78
'listener 127.0.0.1:18443 {' \
79
' protocol tls' \
@@ -90,7 +91,7 @@ jobs:
90
91
src/sniproxy -c /tmp/sniproxy-test.conf
92
sleep 2
93
- ps aux | grep sniproxy | grep -v grep
94
+ ps aux | grep sniproxy | grep -v grep || true
95
96
# Check process flags for capability mode (0x100 bit)
97
set +e
0 commit comments