# Copyright 2022 Google LLC # # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file or at # https://developers.google.com/open-source/licenses/bsd name: Build and Test PR # Builds and tests on all combinations of OS, build type, and library type. # Also builds the docs. # # Runs when a pull request is opened or updated. # # Can also be run manually for debugging purposes. on: pull_request: types: [opened, synchronize, reopened] workflow_dispatch: inputs: ref: description: "The ref to build and test." required: False jobs: lint: name: Lint uses: ./.github/workflows/lint.yaml with: ref: ${{ github.event.inputs.ref || github.ref }} build_and_test: needs: lint name: Build and test uses: ./.github/workflows/build.yaml with: ref: ${{ github.event.inputs.ref || github.ref }} build_docs: needs: lint name: Build docs uses: ./.github/workflows/build-docs.yaml with: ref: ${{ github.event.inputs.ref || github.ref }} official_docker_image: needs: lint name: Official Docker image uses: ./.github/workflows/docker-image.yaml with: ref: ${{ github.event.inputs.ref || github.ref }} test_supported_linux_distros: # Doesn't really "need" it, but let's not waste time on a series of docker # builds just to cancel it because of a linter error. needs: lint name: Test Linux distros uses: ./.github/workflows/test-linux-distros.yaml with: ref: ${{ github.event.inputs.ref || github.ref }}