debug: Debug failing arm mac builds #56
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
# 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. Uses pull_request_target rather than pull_request for | |
# access to configuration variables. Since no secrets are accessed or passed | |
# to the build workflow, this is safe. Only the release workflow uses secrets. | |
on: | |
pull_request_target: | |
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: 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 | |
with: | |
ref: refs/pull/${{ github.event.number }}/merge |