124.0.6367.78 #24
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" | |
on: [push, pull_request] | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
language: ['cpp'] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
- name: Build | |
run: | | |
git submodule update --init --recursive --depth 1 | |
CHROMIUM_TAG=$(cat VERSION) | |
BORINGSSL_REVISION=$(curl -s https://raw.githubusercontent.com/chromium/chromium/$CHROMIUM_TAG/DEPS | grep "'boringssl_revision':" | awk -F"'" '{print $4}') | |
mkdir boringssl | |
cd boringssl | |
git init -q . | |
git remote add origin https://github.com/google/boringssl.git | |
git fetch origin $BORINGSSL_REVISION | |
git checkout -b temp $BORINGSSL_REVISION | |
git config user.name "temp" | |
git config user.email "[email protected]" | |
git am --3way --ignore-space-change < ../patch/boringssl.patch | |
cp -r ../src/gostssl.cpp ./ | |
cp -r ../src/msspi/src/* ./ | |
cp -r ../src/msspi/third_party/cprocsp/include/* ./include/ | |
g++ -v | |
g++ -Wall -std=c++14 -g -O2 -fPIC -Werror -Wno-unused-function -I./include gostssl.cpp -c -o gostssl.o | |
g++ -Wall -std=c++14 -g -O2 -fPIC -Werror -Wno-unused-function -I./include msspi.cpp -c -o msspi.o | |
g++ -shared -o libgostssl.so gostssl.o msspi.o | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 |