-
Notifications
You must be signed in to change notification settings - Fork 15
139 lines (118 loc) · 4.03 KB
/
test-td-case.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
name: Test TDengine cases
on:
push:
branches:
- 'main'
- '3.0'
pull_request:
branches:
- 'main'
- '3.0'
jobs:
test:
runs-on: ubuntu-20.04
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Setup build tools
run: |
sudo apt update -y
sudo apt install -y build-essential cmake \
libgeos-dev libjansson-dev libsnappy-dev liblzma-dev libz-dev \
zlib1g-dev pkg-config libssl-dev gawk
- name: Set up python
run: |
python --version
- name: Cache Poetry
id: cache-poetry
uses: actions/cache@v2.1.5
with:
path: ~/.poetry
key: ubuntu-20.04-poetry
#----------------------------------------------
# ----- install & configure poetry -----
#----------------------------------------------
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.8.5
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
#----------------------------------------------
# load cached venv if cache exists
#----------------------------------------------
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v2
with:
path: .venv
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
#----------------------------------------------
# install dependencies if cache does not exist
#----------------------------------------------
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --with=test --no-root
#----------------------------------------------
# install your root project, if required
#----------------------------------------------
- name: Install library
run: poetry install --no-interaction --with=test
#----------------------------------------------
# build your TDengine 3.0
#----------------------------------------------
- name: Determine TDengine branch
uses: haya14busa/action-cond@v1
id: determine-branch
with:
cond: ${{ github.base_ref == 'main' }}
if_true: 'main'
if_false: '3.0'
- name: Checkout tdengine
uses: actions/checkout@v4
with:
repository: "taosdata/TDengine"
path: "TDengine_v3"
ref: ${{ steps.determine-branch.outputs.value }}
- name: Build TDengine 3.0
run: |
pwd
git branch -vv
cd TDengine_v3
rm build -rf
mkdir build
cd build
cmake ../ -DBUILD_JDBC=false -DBUILD_DEPENDENCY_TESTS=false -DCMAKE_INSTALL_PREFIX:PATH=`realpath ../../local/` -DBUILD_HTTP=false
make -j14
sudo make install
ls -alh /etc/taos/
cd ../../
#----------------------------------------------
# pip install dependencies
#----------------------------------------------
- name: Pip install dependencies
run: |
cd TDengine_v3/tests/
pip3 install pip --upgrade
pip3 install -r requirements.txt
pip3 install pyopenssl --upgrade
pip3 install decorator
pip3 install tzlocal
#----------------------------------------------
# run test suite
#----------------------------------------------
- name: Test TDengine 3.0
run: |
pip3 install taos-ws-py
cd TDengine_v3/tests/system-test
python3 ./test.py -f 1-insert/insert_drop.py
python3 ./test.py -f 2-query/floor.py
python3 ./test.py -f 7-tmq/basic5.py
- name: 'Upload taosd logs'
if: failure()
uses: actions/upload-artifact@v4
with:
name: log-v3-taosd
path: /tmp/taos/v3/log/
retention-days: 1