-
Notifications
You must be signed in to change notification settings - Fork 16
51 lines (48 loc) · 1.19 KB
/
e2e-etcd.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
name: e2e-etcd
on:
pull_request:
paths-ignore:
- '**.md'
- 'docs/**'
push:
paths-ignore:
- '**.md'
- 'docs/**'
branches:
- '*'
env:
ISTIO_VERSION: 1.10.0
SCRIPTS_DIR: test/e2e/scripts
COMMON_DIR: test/e2e/common
jobs:
TestNacos:
runs-on: ubuntu-latest
timeout-minutes: 60
strategy:
fail-fast: true
name: e2e
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: 1.16.3
- name: Install dependencies
run: |
go version
- name: build docker
run: make docker-build-e2e
- name: Prepare envrionment
run: bash ${SCRIPTS_DIR}/pre.sh
- name: Install Minikube
run: bash ${SCRIPTS_DIR}/minikube.sh start
- name: Install aeraki
run: bash ${SCRIPTS_DIR}/aeraki.sh
- name: Install Istio
run: bash ${SCRIPTS_DIR}/istio.sh -y -f ${COMMON_DIR}/istio-config.yaml
- name: Install dubbo2istio
run: bash ${SCRIPTS_DIR}/dubbo2istio.sh etcd
- name: test
run: go test -v github.com/aeraki-mesh/dubbo2istio/test/e2e/etcd/