mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
Merge pull request #12953 from serathius/e2e-split
github actions: Move e2e to separate workflow and remove semaphoreci
This commit is contained in:
commit
7ba53c71a9
35
.github/workflows/e2e.yaml
vendored
Normal file
35
.github/workflows/e2e.yaml
vendored
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
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
|
||||||
|
- uses: actions/setup-go@v2
|
||||||
|
with:
|
||||||
|
go-version: 1.16.4
|
||||||
|
- run: date
|
||||||
|
- env:
|
||||||
|
TARGET: ${{ matrix.target }}
|
||||||
|
run: |
|
||||||
|
echo "${TARGET}"
|
||||||
|
case "${TARGET}" in
|
||||||
|
linux-amd64-e2e)
|
||||||
|
PASSES='build release e2e' MANUAL_VER=v3.4.7 CPU='4' EXPECT_DEBUG='true' COVER='false' RACE='true' ./test.sh 2>&1 | tee test.log
|
||||||
|
! egrep "(--- FAIL:|DATA RACE|panic: test timed out|appears to have leaked)" -B50 -A10 test.log
|
||||||
|
;;
|
||||||
|
linux-386-e2e)
|
||||||
|
GOARCH=386 PASSES='build e2e' CPU='4' EXPECT_DEBUG='true' COVER='false' RACE='true' ./test.sh 2>&1 | tee test.log
|
||||||
|
! egrep "(--- FAIL:|DATA RACE|panic: test timed out|appears to have leaked)" -B50 -A10 test.log
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "Failed to find target"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
10
.github/workflows/tests.yaml
vendored
10
.github/workflows/tests.yaml
vendored
@ -14,8 +14,6 @@ jobs:
|
|||||||
- linux-amd64-integration-4-cpu
|
- linux-amd64-integration-4-cpu
|
||||||
- linux-amd64-functional
|
- linux-amd64-functional
|
||||||
- linux-amd64-unit-4-cpu-race
|
- linux-amd64-unit-4-cpu-race
|
||||||
- linux-amd64-e2e
|
|
||||||
- linux-386-e2e
|
|
||||||
- all-build
|
- all-build
|
||||||
- linux-386-unit-1-cpu
|
- linux-386-unit-1-cpu
|
||||||
steps:
|
steps:
|
||||||
@ -64,14 +62,6 @@ jobs:
|
|||||||
linux-386-unit-1-cpu)
|
linux-386-unit-1-cpu)
|
||||||
GOARCH=386 PASSES='unit' RACE='false' CPU='1' ./test -p=4
|
GOARCH=386 PASSES='unit' RACE='false' CPU='1' ./test -p=4
|
||||||
;;
|
;;
|
||||||
linux-amd64-e2e)
|
|
||||||
PASSES='build release e2e' MANUAL_VER=v3.4.7 CPU='4' EXPECT_DEBUG='true' COVER='false' RACE='true' ./test.sh 2>&1 | tee test.log
|
|
||||||
! egrep "(--- FAIL:|DATA RACE|panic: test timed out|appears to have leaked)" -B50 -A10 test.log
|
|
||||||
;;
|
|
||||||
linux-386-e2e)
|
|
||||||
GOARCH=386 PASSES='build e2e' CPU='4' EXPECT_DEBUG='true' COVER='false' RACE='true' ./test.sh 2>&1 | tee test.log
|
|
||||||
! egrep "(--- FAIL:|DATA RACE|panic: test timed out|appears to have leaked)" -B50 -A10 test.log
|
|
||||||
;;
|
|
||||||
*)
|
*)
|
||||||
echo "Failed to find target"
|
echo "Failed to find target"
|
||||||
exit 1
|
exit 1
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
[](https://goreportcard.com/report/github.com/etcd-io/etcd)
|
[](https://goreportcard.com/report/github.com/etcd-io/etcd)
|
||||||
[](https://codecov.io/gh/etcd-io/etcd)
|
[](https://codecov.io/gh/etcd-io/etcd)
|
||||||
[](https://github.com/etcd-io/etcd/actions/workflows/tests.yaml)
|
[](https://github.com/etcd-io/etcd/actions/workflows/tests.yaml)
|
||||||
[](https://semaphoreci.com/etcd-io/etcd)
|
|
||||||
[](https://etcd.io/docs)
|
[](https://etcd.io/docs)
|
||||||
[](https://godoc.org/github.com/etcd-io/etcd)
|
[](https://godoc.org/github.com/etcd-io/etcd)
|
||||||
[](https://github.com/etcd-io/etcd/releases)
|
[](https://github.com/etcd-io/etcd/releases)
|
||||||
|
@ -1,17 +1,4 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
if ! [[ "$0" =~ "tests/semaphore.test.bash" ]]; then
|
# Placeholder until SemaphoreCI is disabled
|
||||||
echo "must be run from repository root"
|
# E2e tests were migrated to GitHub Actions
|
||||||
exit 255
|
|
||||||
fi
|
|
||||||
|
|
||||||
<<COMMENT
|
|
||||||
# amd64-e2e
|
|
||||||
tests/semaphore.test.bash
|
|
||||||
sudo HOST_TMP_DIR=/tmp TEST_OPTS="PASSES='build release e2e' MANUAL_VER=v3.4.7" EXPECT_DEBUG='true' make docker-test
|
|
||||||
|
|
||||||
# 386-e2e
|
|
||||||
sudo HOST_TMP_DIR=/tmp TEST_OPTS="GOARCH=386 PASSES='build e2e'" EXPECT_DEBUG='true' make docker-test
|
|
||||||
COMMENT
|
|
||||||
|
|
||||||
sudo HOST_TMP_DIR=/tmp TEST_OPTS="PASSES='build release e2e' MANUAL_VER=v3.4.7 EXPECT_DEBUG='true'" make docker-test
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user