zll600 commented on code in PR #11027:
URL: https://github.com/apache/apisix/pull/11027#discussion_r1522662706
##########
.github/workflows/http3.yml:
##########
@@ -72,13 +76,13 @@ jobs:
id: test_env
run: |
test_dir="${{ matrix.test_dir }}"
- if [[ $test_dir =~ 't/http3/plugin' ]]; then
+ if [[ $test_dir =~ 't/plugin' || $test_dir =~ 't/http3/plugin' ]];
then
echo "type=plugin" >>$GITHUB_OUTPUT
fi
- if [[ $test_dir =~ 't/http3/admin' ]]; then
+ if [[ $test_dir =~ 't/admin' || $test_dir =~ 't/http3/admin' ]]; then
echo "type=first" >>$GITHUB_OUTPUT
fi
- if [[ $test_dir =~ ' t/http3/xrpc' ]]; then
+ if [[ $test_dir =~ ' t/xrpc' || $test_dir =~ ' t/http3/xrpc' ]]; then
Review Comment:
Sorry, xrpc is L4 level, I will remove it from here.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]