[release-3.5] Do not wait for ready notify if the server is stopping #14074
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: E2E | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
target: | |
- linux-amd64-e2e | |
- linux-386-e2e | |
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-e2e) | |
make install-gofail | |
CPU='4' EXPECT_DEBUG='true' COVER='false' RACE='true' FAILPOINTS='true' make test-e2e-release | |
;; | |
linux-386-e2e) | |
GOARCH=386 CPU='4' EXPECT_DEBUG='true' COVER='false' RACE='true' make test-e2e | |
;; | |
*) | |
echo "Failed to find target" | |
exit 1 | |
;; | |
esac |