mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
34 lines
809 B
YAML
34 lines
809 B
YAML
name: grpcProxy-tests
|
|
on: [push, pull_request]
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: true
|
|
matrix:
|
|
target:
|
|
- linux-amd64-grpcproxy
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- id: goversion
|
|
run: echo "goversion=$(cat .go-version)" >> "$GITHUB_OUTPUT"
|
|
- uses: actions/setup-go@v2
|
|
with:
|
|
go-version: ${{ steps.goversion.outputs.goversion }}
|
|
- run: date
|
|
- env:
|
|
TARGET: ${{ matrix.target }}
|
|
run: |
|
|
set -euo pipefail
|
|
|
|
echo "${TARGET}"
|
|
case "${TARGET}" in
|
|
linux-amd64-grpcproxy)
|
|
PASSES='build grpcproxy' CPU='4' COVER='false' RACE='true' ./test.sh
|
|
;;
|
|
*)
|
|
echo "Failed to find target"
|
|
exit 1
|
|
;;
|
|
esac
|