This is an automated email from the ASF dual-hosted git repository. spacewander pushed a commit to branch release/2.15 in repository https://gitbox.apache.org/repos/asf/apisix.git
commit a2a91da8a8b97850a02c2c5247be9811a48027e0 Author: 罗泽轩 <[email protected]> AuthorDate: Tue Aug 2 15:07:53 2022 +0800 ci: make sure the correct version of click is installed (#7589) Address broken fuzzing CI like https://github.com/apache/apisix/runs/7625185369?check_suite_focus=true https://github.com/apache/apisix/runs/7625351307?check_suite_focus=true Signed-off-by: spacewander <[email protected]> --- .github/workflows/fuzzing-ci.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/fuzzing-ci.yaml b/.github/workflows/fuzzing-ci.yaml index 426ebcc37..757bb93b7 100644 --- a/.github/workflows/fuzzing-ci.yaml +++ b/.github/workflows/fuzzing-ci.yaml @@ -63,6 +63,8 @@ jobs: - name: install boofuzz run: | + # Avoid "ERROR: flask has requirement click>=8.0, but you'll have click 7.0 which is incompatible" + sudo apt remove python3-click pip install -r $PWD/t/fuzzing/requirements.txt - name: run simpleroute test
