-
Notifications
You must be signed in to change notification settings - Fork 964
180 lines (159 loc) · 5.43 KB
/
version_compatible_hypo.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
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
name: "version-compatible-test-hypo"
on:
push:
branches:
- main
paths:
- '**/testVersionCompatible.py'
- '**/version_compatible_hypo.yml'
pull_request:
branches:
- main
paths:
- '**/testVersionCompatible.py'
- '**/version_compatible_hypo.yml'
schedule:
- cron: '0 19 * * *'
workflow_dispatch:
inputs:
debug:
type: boolean
description: "Run the build with tmate debugging enabled"
required: false
default: false
jobs:
vc-hypo:
timeout-minutes: 120
continue-on-error: false
strategy:
fail-fast: false
matrix:
old_juicefs_version: ['main', 'release-1.0']
meta: ['redis', 'mysql', 'tikv']
storage: ['minio']
include:
- old_juicefs_version: 'main'
meta: 'fdb'
storage: 'minio'
- old_juicefs_version: 'release-1.0'
meta: 'postgres'
storage: 'minio'
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Set Variable
id: vars
run: |
if [ "${{matrix.meta}}" == "fdb" ]; then
echo "target=juicefs.fdb" >> $GITHUB_OUTPUT
else
echo "target=juicefs" >> $GITHUB_OUTPUT
fi
- name: Build new version
timeout-minutes: 10
uses: ./.github/actions/build
with:
target: ${{steps.vars.outputs.target}}
- name: Checkout old version
uses: actions/checkout@v3
with:
ref: ${{matrix.old_juicefs_version}}
path: ${{matrix.old_juicefs_version}}
- name: Make old build
timeout-minutes: 10
run: |
cd ${{matrix.old_juicefs_version}}
if [ "${{matrix.meta}}" == "fdb" ]; then
echo "build juicefs.fdb"
wget -q https://github.com/apple/foundationdb/releases/download/6.3.23/foundationdb-clients_6.3.23-1_amd64.deb
sudo dpkg -i foundationdb-clients_6.3.23-1_amd64.deb
make juicefs.fdb
mv juicefs.fdb juicefs
else
echo "build juicefs"
make juicefs
fi
cd -
- name: Prepare meta database
run: |
chmod +x .github/scripts/start_meta_engine.sh
source .github/scripts/start_meta_engine.sh
start_meta_engine ${{matrix.meta}} ${{matrix.storage}}
# meta_url=$(get_meta_url ${{matrix.meta}})
# create_database $meta_url
- name: Install tools
run: |
wget -q https://dl.minio.io/client/mc/release/linux-amd64/mc
chmod +x mc
sudo mv mc /usr/local/bin
sudo .github/scripts/apt_install.sh redis-tools
sudo pip install hypothesis
sudo pip install minio
sudo pip install xattr
- name: Test
timeout-minutes: 90
run: |
export META=${{matrix.meta}}
export STORAGE=${{matrix.storage}}
new_version=`./juicefs --version | awk -F" " '{print $3}' | awk -F+ '{print $1}'`
echo new_version is $new_version
mv juicefs juicefs-$new_version
export NEW_JFS_BIN="juicefs-$new_version"
old_version=`${{matrix.old_juicefs_version}}/juicefs --version | awk -F" " '{print $3}' | awk -F+ '{print $1}'`
echo old_version is $old_version
mv ${{matrix.old_juicefs_version}}/juicefs juicefs-$old_version
export OLD_JFS_BIN="juicefs-$old_version"
timeout 3600 python3 .github/scripts/testVersionCompatible.py 2>&1 | tee result.log || code=$?; if [[ $code -eq 124 ]]; then echo test timeout with $code && exit 0; else echo exit with $code && exit $code; fi
- name: Display result log
if: always()
run: |
if [ -f "result.log" ]; then
tail -n 500 result.log
fi
- name: Upload command log
if: always()
uses: actions/upload-artifact@v3
with:
name: ${{matrix.meta}}-${{matrix.old_juicefs_version}}.command.log
path: ~/command.log
- name: Display log
if: always()
shell: bash
run: |
if [ -f "/home/runner/.juicefs/juicefs.log" ]; then
tail -1000 /home/runner/.juicefs/juicefs.log
grep "<FATAL>:" /home/runner/.juicefs/juicefs.log && exit 1 || true
fi
- name: Display command
if: always()
shell: bash
run: |
if [ -f "$HOME/command.log" ]; then
tail -100 ~/command.log
fi
- name: Setup upterm session
if: failure() && (github.event.inputs.debug == 'true' || github.run_attempt != 1)
timeout-minutes: 60
uses: lhotari/action-upterm@v1
success-all-test:
runs-on: ubuntu-latest
needs: [vc-hypo]
if: always()
steps:
- uses: technote-space/workflow-conclusion-action@v3
- uses: actions/checkout@v3
- name: Check Failure
if: env.WORKFLOW_CONCLUSION == 'failure'
run: exit 1
- name: Send Slack Notification
if: failure() && github.event_name != 'workflow_dispatch'
uses: juicedata/slack-notify-action@main
with:
channel-id: "${{ secrets.SLACK_CHANNEL_ID_FOR_PR_CHECK_NOTIFY }}"
slack_bot_token: "${{ secrets.SLACK_BOT_TOKEN }}"
- name: Success
if: success()
run: echo "All Done"