Skip to content

Always build with latest picotls #32

Always build with latest picotls

Always build with latest picotls #32

---
name: "CodeQL"
on:
push
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
fetch-depth: 2
submodules: 'recursive'
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: cpp
config-file: ./.github/codeql/codeql-config.yml
- run: |
sudo apt-get install -y libssl-dev
./ci/build_picotls.sh
./ci/build_picoquic.sh
mkdir build
cd build
cmake ..
cmake --build .
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1