We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 524bd14 commit 5c15dd0Copy full SHA for 5c15dd0
.github/workflows/cli.yml
@@ -63,4 +63,8 @@ jobs:
63
./ci/${{ matrix.job_name }}_runner.sh do_install
64
65
- name: Linux Script
66
- run: sudo ./ci/${{ matrix.job_name }}_runner.sh script
+ run: |
67
+ sudo sh -c 'umask 022 && ./ci/${{ matrix.job_name }}_runner.sh script'
68
+
69
+ - name: Setup tmate session
70
+ uses: mxschmitt/action-tmate@v3
t/cli/test_access_log.sh
@@ -207,7 +207,7 @@ sleep 4
207
tail -n 2 logs/access.log > output.log
208
209
# APISIX
210
-if ! grep '"https://127.0.0.1:9180" -' output.log; then
+if ! grep '"http://127.0.0.1:9180" -' output.log; then
211
echo "failed: should find upstream scheme"
212
cat output.log
213
exit 1
0 commit comments