HLS: Fix error when stream has extension. #4215 v5.0.217 (#4216) #3987
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" | |
# @see https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#onpushpull_requestbranchestags | |
on: [push, pull_request] | |
jobs: | |
analyze: | |
name: actions-codeql-analyze | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [ 'cpp' ] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
# Initializes the CodeQL tools for scanning. | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: ${{ matrix.language }} | |
- name: Build SRS | |
run: | | |
echo "pwd: $(pwd), who: $(whoami)" | |
docker run --rm -v $(pwd):$(pwd) -w $(pwd)/trunk ossrs/srs:ubuntu20-cache \ | |
bash -c "./configure && chmod 777 -R objs" | |
cd trunk && ./configure && make | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 |