feat(k8s-discovery): support mTLS #11584
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: fuzzing | |
on: | |
push: | |
branches: [master, 'release/**'] | |
paths-ignore: | |
- 'docs/**' | |
- '**/*.md' | |
pull_request: | |
branches: [master, 'release/**'] | |
paths-ignore: | |
- 'docs/**' | |
- '**/*.md' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref == 'refs/heads/master' && github.run_number || github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
test_apisix: | |
name: run fuzzing | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3.2.0 | |
with: | |
submodules: recursive | |
- name: Cache deps | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-deps | |
with: | |
path: deps | |
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('rockspec/apisix-master-0.rockspec') }} | |
- name: Linux launch common services | |
run: | | |
project_compose_ci=ci/pod/docker-compose.common.yml make ci-env-up | |
- name: run apisix | |
run: | | |
wget -qO - https://openresty.org/package/pubkey.gpg | sudo apt-key add - | |
sudo apt-get update | |
sudo apt-get -y install software-properties-common | |
sudo add-apt-repository -y "deb http://openresty.org/package/ubuntu $(lsb_release -sc) main" | |
sudo apt-get update | |
sudo apt-get install -y git openresty curl openresty-openssl111-dev unzip make gcc libldap2-dev | |
./utils/linux-install-luarocks.sh | |
make deps | |
make init | |
make run | |
- name: run upstream | |
run: | | |
sudo openresty -c $PWD/t/fuzzing/upstream/nginx.conf | |
- 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 tests | |
run: | | |
python $PWD/t/fuzzing/simpleroute_test.py | |
python $PWD/t/fuzzing/serverless_route_test.py | |
python $PWD/t/fuzzing/vars_route_test.py | |
python $PWD/t/fuzzing/client_abort.py | |
python $PWD/t/fuzzing/simple_http.py | |
python $PWD/t/fuzzing/http_upstream.py |