Skip to content

Fix ext_proc fuzzer test issues. #5170

Fix ext_proc fuzzer test issues.

Fix ext_proc fuzzer test issues. #5170

Workflow file for this run

name: mobile_tsan
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.head_ref || github.run_id }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
env:
if: ${{ github.repository == 'envoyproxy/envoy' }}
uses: ./.github/workflows/env.yml
secrets: inherit
tsan:
if: ${{ needs.env.outputs.mobile_tsan == 'true' }}
needs: env
name: tsan
runs-on: ubuntu-20.04
timeout-minutes: 90
container:
image: envoyproxy/envoy-build-ubuntu:mobile-41c5a05d708972d703661b702a63ef5060125c33
env:
CC: /opt/llvm/bin/clang
CXX: /opt/llvm/bin/clang++
steps:
- uses: actions/checkout@v3
- name: Add safe directory
run: git config --global --add safe.directory /__w/envoy/envoy
- name: 'Run tests'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
cd mobile && ./bazelw test \
--test_output=all \
--test_env=ENVOY_IP_TEST_VERSIONS=v4only \
$([ -z $GITHUB_TOKEN ] || echo "--config=remote-ci-linux-tsan") \
//test/common/...