-
Notifications
You must be signed in to change notification settings - Fork 11
47 lines (41 loc) · 1.61 KB
/
test.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# 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.event.number }}
cancel-in-progress: true
# NOTE: Create an environment called "debug" to enable debugging via tmate on
# failure.
# NOTE: Create an environment called "self_hosted" to enable self-hosted
# runners from build-matrix.json.
jobs:
settings:
name: Settings
uses: ./.github/workflows/settings.yaml
build:
needs: settings
uses: ./.github/workflows/build.yaml
with:
ref: refs/pull/${{ github.event.number }}/merge
self_hosted: ${{ needs.settings.outputs.self_hosted != '' }}
debug: ${{ needs.settings.outputs.debug != '' }}