Skip to content

Bump google.golang.org/grpc from 1.38.0 to 1.56.3 in /tests/apps/binding_output #20

Bump google.golang.org/grpc from 1.38.0 to 1.56.3 in /tests/apps/binding_output

Bump google.golang.org/grpc from 1.38.0 to 1.56.3 in /tests/apps/binding_output #20

#
# Copyright 2021 The Dapr Authors
# 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
# http://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.
#
name: dapr-test-apps
on:
workflow_dispatch:
pull_request:
branches:
- master
- release-*
jobs:
build:
name: Build on ${{ matrix.target_os }}_${{ matrix.target_arch }}
runs-on: ${{ matrix.os }}
env:
GOVER: 1.17
GOOS: ${{ matrix.target_os }}
GOARCH: ${{ matrix.target_arch }}
GOPROXY: https://proxy.golang.org
strategy:
matrix:
os: [ubuntu-latest, windows-2019]
target_arch: [arm, arm64, amd64]
include:
- os: ubuntu-latest
target_os: linux
- os: windows-2019
target_os: windows
exclude:
- os: windows-2019
target_arch: arm
- os: windows-2019
target_arch: arm64
steps:
- name: Set up Go ${{ env.GOVER }}
uses: actions/setup-go@v2
with:
go-version: ${{ env.GOVER }}
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Build all E2E test apps
env:
TARGET_OS: ${{ matrix.target_os }}
TARGET_ARCH: ${{ matrix.target_arch }}
DAPR_TEST_REGISTRY: localhost:5000
DAPR_TEST_TAG: dev
run: make build-e2e-app-all
- name: Build all perf test apps
if: matrix.target_os == 'linux' && matrix.target_arch == 'amd64'
env:
TARGET_OS: ${{ matrix.target_os }}
TARGET_ARCH: ${{ matrix.target_arch }}
DAPR_TEST_REGISTRY: localhost:5000
DAPR_TEST_TAG: dev
run: make build-perf-app-all