Skip to content

[CVE/1.25] Resolve multiple CVEs #6918

[CVE/1.25] Resolve multiple CVEs

[CVE/1.25] Resolve multiple CVEs #6918

Workflow file for this run

name: mobile_tsan
on:
push:
branches:
- main
pull_request:
jobs:
tsan:
if: github.repository == 'envoyproxy/envoy'
name: tsan
runs-on: ubuntu-20.04
timeout-minutes: 90
container:
image: envoyproxy/envoy-build-ubuntu:7304f974de2724617b7492ccb4c9c58cd420353a
env:
CC: /opt/llvm/bin/clang
CXX: /opt/llvm/bin/clang++
steps:
- uses: actions/checkout@v1
- name: Add safe directory
run: git config --global --add safe.directory /__w/envoy/envoy
- id: should_run
name: 'Check whether to run'
run: ./mobile/tools/should_run_ci.sh
- uses: actions/setup-java@c3ac5dd0ed8db40fedb61c32fbe677e6b355e94c
if: steps.should_run.outputs.run_ci_job == 'true'
with:
java-version: '8'
java-package: jdk
architecture: x64
distribution: zulu
- name: 'Run tests'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: steps.should_run.outputs.run_ci_job == 'true'
run: |
cd mobile && ./bazelw test \
--test_output=all \
--test_env=ENVOY_IP_TEST_VERSIONS=v4only \
--remote_header="Authorization=Bearer $GITHUB_TOKEN" \
$([ -z $GITHUB_TOKEN ] || echo "--config=remote-ci-linux-tsan") \
//test/common/...