Fix bug that would cause VP9/AV1 simulcast not to be routed properly after a switch. #2365
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
# This workflow will build a Java project with Maven | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
name: Java CI with Maven | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
env: | |
# Java version to use for the release | |
RELEASE_JAVA_VERSION: 11 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ 11, 17 ] | |
name: Java ${{ matrix.java }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Java ${{ matrix.java }} | |
uses: actions/setup-java@v2 | |
with: | |
distribution: temurin | |
java-version: ${{ matrix.java }} | |
cache: maven | |
- name: Build with Maven | |
run: ./resources/build.sh -Pcoverage -B | |
- name: Upload coverage report | |
if: matrix.java == env.RELEASE_JAVA_VERSION | |
uses: codecov/codecov-action@v2 |