-
Notifications
You must be signed in to change notification settings - Fork 1
133 lines (120 loc) · 4.07 KB
/
e2e_test.yaml
File metadata and controls
133 lines (120 loc) · 4.07 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
name: E2E tests
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
e2e_tests:
strategy:
matrix:
# ref: https://github.com/actions/runner-images
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: install vfox (Linux)
if: runner.os == 'Linux'
run: |
echo "deb [trusted=yes] https://apt.fury.io/versionfox/ /" | sudo tee /etc/apt/sources.list.d/versionfox.list
sudo apt-get update
sudo apt-get install vfox
- name: install vfox (MacOS)
if: runner.os == 'MacOS'
run: |
brew tap version-fox/tap
brew install vfox
- name: install scoop (Windows)
if: runner.os == 'Windows'
uses: MinoruSekine/setup-scoop@v3
- name: install vfox (Windows)
if: runner.os == 'Windows'
run: |
scoop install vfox
- name: add vfox-etcd plugin
if: runner.os == 'Windows'
run: |
vfox add --source https://github.com/version-fox/vfox-etcd/archive/$env:GITHUB_REF.zip etcd
- name: add vfox-etcd plugin
if: runner.os != 'Windows'
run: |
vfox add --source https://github.com/version-fox/vfox-etcd/archive/${GITHUB_REF}.zip etcd
- name: install etcd by vfox-etcd plugin (Linux)
if: runner.os == 'Linux'
run: |
vfox install etcd@3.5.12
vfox use -g etcd@3.5.12
eval "$(vfox activate bash)"
echo "===============PATH==============="
echo $PATH
echo "===============PATH==============="
etcd -version
- name: install etcd by vfox-etcd plugin (Darwin)
if: runner.os == 'MacOS'
run: |
vfox install etcd@3.5.12
vfox use -g etcd@3.5.12
eval "$(vfox activate bash)"
echo "===============PATH==============="
echo $PATH
echo "===============PATH==============="
etcd -version
- name: install etcd by vfox-etcd plugin (Windows)
if: runner.os == 'Windows'
run: |
vfox install etcd@3.5.12
vfox use -g etcd@3.5.12
Invoke-Expression "$(vfox activate pwsh)"
echo "===============PATH==============="
echo $env:PATH
echo "===============PATH==============="
etcd -version
- name: install etcd with failpoint by vfox-etcd plugin (Linux)
if: runner.os == 'Linux'
run: |
export BUILD_WITH_FAILPOINT=yes
vfox install etcd@3.4.32
vfox use -g etcd@3.4.32
eval "$(vfox activate bash)"
echo "===============PATH==============="
echo $PATH
echo "===============PATH==============="
etcd -version
export GOFAIL_HTTP="127.0.0.1:22381"
nohup etcd > etcd.log 2>&1 &
sleep 3
ps auxf | grep etcd
output=$(curl http://127.0.0.1:22381 | grep afterCommit)
if [ -n "$output" ]; then
echo "etcd with failpoint"
echo $output
else
echo "etcd does not with failpoint"
echo $output
exit 1
fi
- name: install etcd with failpoint by vfox-etcd plugin (MacOS)
if: runner.os == 'MacOS'
run: |
brew install go
export BUILD_WITH_FAILPOINT=yes
vfox install etcd@3.4.32
vfox use -g etcd@3.4.32
eval "$(vfox activate bash)"
echo "===============PATH==============="
echo $PATH
echo "===============PATH==============="
etcd -version
export GOFAIL_HTTP="127.0.0.1:22381"
nohup etcd > etcd.log 2>&1 &
sleep 3
ps -ef | grep etcd
output=$(curl http://127.0.0.1:22381 | grep afterCommit)
if [ -n "$output" ]; then
echo "etcd with failpoint"
echo $output
else
echo "etcd does not with failpoint"
echo $output
exit 1
fi