Skip to content

ci: Use repository variables instead of secrets #35

ci: Use repository variables instead of secrets

ci: Use repository variables instead of secrets #35

Workflow file for this run

# Copyright 2021 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# A workflow test PRs by building fresh binaries.
name: Test
# Runs when a PR is uploaded or revised. Builds ffmpeg and ffprobe on all OS &
# CPU combinations.
on:
pull_request:
types: [opened, synchronize, reopened]
# If another instance of this workflow is started for the same PR, cancel the
# old one. If a PR is updated and a new test run is started, the old test run
# will be cancelled automatically to conserve resources.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# NOTE: Set the repository variable ENABLE_DEBUG to enable debugging via tmate
# on failure.
# NOTE: Set the repository variable ENABLE_SELF_HOSTED to enable self-hosted
# runners such as linux-arm64. This is set on the official repo, but forks
# will have to opt in after setting up their own self-hosted runners.
jobs:
build:
uses: ./.github/workflows/build.yaml