-
Notifications
You must be signed in to change notification settings - Fork 3
97 lines (79 loc) · 2.06 KB
/
ci.yml
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
name: CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
legacy-test:
runs-on: ubuntu-latest
name: Jepsen test for hstream legacy mode
timeout-minutes: 20
steps:
- uses: actions/checkout@v2
with:
submodules: "recursive"
- name: Prepare environment for test
run: |
cd ./docker
./init-secret.sh
- name: Build base image
run: |
./scripts/build_base.sh
- name: Build test images (legacy)
run: |
./scripts/build_legacy.sh
- name: Check disk space
run: |
df -h
- name: Start test cluster and run jepsen test (legacy)
run: |
./scripts/up_legacy.sh
- name: Cleanup resources (legacy)
run: |
./scripts/clean_legacy.sh
- name: Upload Artifact
uses: actions/upload-artifact@v2
if: ${{ success() }} || ${{ failure() }}
with:
name: legacy-result
path: |
store/
/tmp/*.log
retention-days: 7
kafka-test:
runs-on: ubuntu-latest
name: Jepsen test for hstream kafka mode
timeout-minutes: 20
steps:
- uses: actions/checkout@v2
with:
submodules: "recursive"
- name: Prepare environment for test
run: |
cd ./docker
./init-secret.sh
- name: Build base image
run: |
./scripts/build_base.sh
- name: Build test images (kafka)
run: |
./scripts/build_kafka.sh
- name: Check disk space
run: |
df -h
- name: Start test cluster and run jepsen test (kafka)
run: |
./scripts/up_kafka.sh
- name: Cleanup resources (kafka)
run: |
./scripts/clean_kafka.sh
- name: Upload Artifact
uses: actions/upload-artifact@v2
if: ${{ success() }} || ${{ failure() }}
with:
name: kafka-result
path: |
store/
/tmp/*.log
retention-days: 7