build(deps): bump debian from f80c454
to f4a83aa
in /examples/shared/websocket
#1219
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: CodeQL | |
permissions: | |
contents: read | |
on: | |
push: | |
paths: | |
- 'source/common/**' | |
branches-ignore: | |
- 'dependabot/**' | |
pull_request: | |
concurrency: | |
group: ${{ github.head_ref-github.workflow || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
CodeQL-Build: | |
permissions: | |
security-events: write # for github/codeql-action/analyze to upload SARIF results | |
pull-requests: read | |
strategy: | |
fail-fast: false | |
# CodeQL runs on ubuntu-20.04 | |
runs-on: ubuntu-20.04 | |
if: github.repository == 'envoyproxy/envoy' | |
steps: | |
- name: Pre-cleanup | |
uses: envoyproxy/toolshed/gh-actions/diskspace@6b3ddd1e42c252d68fb98973760c0ee1943c9c21 # actions-v0.2.20 | |
with: | |
to_remove: | | |
/usr/local/lib/android | |
- name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Get build targets | |
run: | | |
. .github/workflows/get_build_targets.sh | |
echo 'BUILD_TARGETS<<EOF' >> $GITHUB_ENV | |
echo $BUILD_TARGETS_LOCAL >> $GITHUB_ENV | |
echo 'EOF' >> $GITHUB_ENV | |
# Initializes the CodeQL tools for scanning. | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@cdcdbb579706841c47f7063dda365e292e5cad7a # codeql-bundle-v2.13.4 | |
# Override language selection by uncommenting this and choosing your languages | |
with: | |
languages: cpp | |
- name: Install deps | |
shell: bash | |
run: | | |
sudo apt-get update --error-on=any | |
sudo apt-get install --yes libtool cmake automake autoconf make ninja-build curl unzip virtualenv openjdk-11-jdk build-essential libc++1 | |
# Note: the llvm/clang version should match the version specifed in: | |
# - bazel/repository_locations.bzl | |
# - .github/workflows/codeql-daily.yml | |
# - https://github.com/envoyproxy/envoy-build-tools/blob/main/build_container/build_container_ubuntu.sh#L84 | |
mkdir -p bin/clang14 | |
cd bin/clang14 | |
wget https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.0/clang+llvm-14.0.0-x86_64-linux-gnu-ubuntu-18.04.tar.xz | |
tar -xf clang+llvm-14.0.0-x86_64-linux-gnu-ubuntu-18.04.tar.xz --strip-components 1 | |
export PATH=bin/clang14/bin:$PATH | |
- name: Build | |
run: | | |
bazel/setup_clang.sh bin/clang14 | |
bazelisk shutdown | |
bazelisk build -c fastbuild --spawn_strategy=local --discard_analysis_cache --nouse_action_cache --config clang --config libc++ $BUILD_TARGETS | |
echo -e "Built targets...\n$BUILD_TARGETS" | |
- name: Clean Artifacts | |
run: | | |
git clean -xdf | |
- name: Perform CodeQL Analysis | |
if: env.BUILD_TARGETS != '' | |
uses: github/codeql-action/analyze@cdcdbb579706841c47f7063dda365e292e5cad7a # codeql-bundle-v2.13.4 |