Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
752 B
28 lines
752 B
2 years ago
|
name: 'Non-Bazel Bash Run'
|
||
|
description: 'Run a bash script for Protobuf CI testing with a non-Bazel build system'
|
||
|
inputs:
|
||
|
credentials:
|
||
|
required: true
|
||
|
description: "The GCP credentials to use for reading the docker image"
|
||
|
type: string
|
||
|
command:
|
||
|
required: true
|
||
|
description: A command to run in the docker image
|
||
|
|
||
|
runs:
|
||
|
using: 'composite'
|
||
|
steps:
|
||
|
- name: Setup Runner
|
||
|
uses: ./.github/actions/internal/setup-runner
|
||
|
|
||
|
- name: Update stale files using Bazel
|
||
|
uses: ./.github/actions/bazel
|
||
|
with:
|
||
|
credentials: ${{ inputs.credentials }}
|
||
|
bazel-cache: regenerate-stale-files
|
||
|
bash: ./regenerate_stale_files.sh $BAZEL_FLAGS
|
||
|
|
||
|
- name: Run
|
||
|
shell: bash
|
||
|
run: ${{ inputs.command }}
|