-
Notifications
You must be signed in to change notification settings - Fork 334
91 lines (83 loc) · 2.46 KB
/
integrate-playground.yaml
File metadata and controls
91 lines (83 loc) · 2.46 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
---
name: integrate-playground
on:
schedule:
# times are in UTC
- cron: "19 21 * * *"
pull_request:
branches:
- master
- release-*
- feature/*
paths-ignore:
- "**.html"
- "**.md"
- "CNAME"
- "LICENSE"
- "doc/**"
- "embed/templates/examples/**"
- "embed/templates/examples/**"
- "components/client/**"
- "components/ctl/**"
- "components/cluster/**"
- "components/doc/**"
- "components/errdoc/**"
- "components/dm/**"
- "server/**"
- "pkg/version/version.go"
- ".github/workflows/integrate-cluster**"
- ".github/workflows/integrate-dm**"
- ".github/workflows/integrate-tiup**"
jobs:
playground:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
fail-fast: true
matrix:
cases:
- "test_playground"
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up Go 1.24
uses: actions/setup-go@v4
with:
go-version: 1.24.x
id: go
- name: Build build_tiup_playground_test
run: |
export PATH=$PATH:$GOPATH/bin
sudo apt update
sudo apt-get install -y build-essential psmisc
make tiup build_tiup_playground_test
- name: Run test suite
id: test
run: |
export PATH=$PATH:$PWD/bin/
bash ./tests/tiup-playground/${{ matrix.cases }}.sh
- name: Collect component log
if: ${{ failure() }}
run: |
# ignore the rocksdb
find ./tests/tiup-playground/_tmp/home/data -type f -name "*.log" | grep -vE '/data/(raft|db|region-meta)/' | xargs cp {} ./logs
- name: Upload component log
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
overwrite: true
name: playground_logs
path: ./logs
- name: Output playground debug log
if: ${{ failure() }}
# if: always()
run: |
for f in $(find ./tests/tiup-playground/_tmp/home/data -type f -name "*.log" | grep -vE '/data/(raft|db|region-meta)/'); do echo "${f}" && cat "${f}"; done
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
files: ./tests/tiup-playground/cover/*.out
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}