-
Notifications
You must be signed in to change notification settings - Fork 987
80 lines (70 loc) · 2.03 KB
/
sync.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
name: "sync"
on:
push:
branches:
- 'main'
- 'release-**'
paths-ignore:
- '**/sync.yml'
- '**/syncrand_test.py'
- '**/syncrand.py'
- '.github/scripts/sync/*.sh'
pull_request:
branches:
- 'main'
- 'release-**'
paths:
- '**/sync.yml'
- '**/syncrand_test.py'
- '**/syncrand.py'
- '.github/scripts/sync/*.sh'
schedule:
- cron: '30 20 * * *'
workflow_dispatch:
inputs:
debug:
type: boolean
description: "Run the build with tmate debugging enabled"
required: false
default: false
jobs:
sync:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Build
uses: ./.github/actions/build
# with:
# useBeta: true
- name: Test Sync
timeout-minutes: 30
run: |
sudo META=redis .github/scripts/sync/sync.sh
- name: Test Sync with fsrand
timeout-minutes: 30
run: |
sudo META=redis .github/scripts/sync/sync_fsrand.sh
- name: Test Sync with mino
timeout-minutes: 30
run: |
sudo META=redis .github/scripts/sync/sync_minio.sh
- name: Test Sync with multi workers
timeout-minutes: 30
run: |
# not supported algo: "dsa" "ecdsa-sk" "ed25519-sk"
types=("ecdsa" "ed25519" "rsa")
random_type=${types[$RANDOM % ${#types[@]}]}
sudo CI=true META=redis KEY_TYPE=$random_type .github/scripts/sync/sync_cluster.sh
- name: Test sync include/exclude option
timeout-minutes: 30
run: |
# sudo python3 .github/scripts/hypo/syncrand_test.py
sudo LOG_LEVEL=WARNING PROFILE=ci python3 .github/scripts/hypo/syncrand.py
- name: Setup upterm session
if: failure() && (github.event.inputs.debug == 'true' || github.run_attempt != 1)
# if: failure()
timeout-minutes: 60
uses: lhotari/action-upterm@v1