proto-loader: Bump version to 0.7.13 #1284
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
name: grpc-tools Build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
linux_build: | |
name: Linux grpc-tools Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Build | |
run: | | |
docker build -t kokoro-native-image tools/release/native | |
docker run -v /var/run/docker.sock:/var/run/docker.sock -v $GITHUB_WORKSPACE:$GITHUB_WORKSPACE kokoro-native-image $GITHUB_WORKSPACE/packages/grpc-tools/build_binaries.sh | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: grpc-tools_linux | |
path: artifacts/ | |
macos_build: | |
name: Macos grpc-tools Build | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Build | |
run: packages/grpc-tools/build_binaries.sh | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: grpc-tools_macos | |
path: artifacts/ | |
windows_build: | |
name: Windows grpc-tools Build | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
arch: [ia32, x64] | |
env: | |
ARCH: ${{matrix.arch}} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Build | |
run: powershell -File ./packages/grpc-tools/build_binaries.ps1 | |
shell: cmd | |
- uses: actions/upload-artifact@v1 | |
with: | |
name: grpc-tools_windows_${{matrix.arch}} | |
path: artifacts/ | |
combine_artifacts: | |
name: Combine grpc-tools artifacts | |
runs-on: ubuntu-latest | |
needs: [linux_build, macos_build, windows_build] | |
steps: | |
- uses: actions/download-artifact@v2 | |
- name: Copy | |
run: | | |
mkdir artifacts | |
cp -r ./**/* artifacts/ | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: combined-artifacts | |
path: artifacts/ |