-
Notifications
You must be signed in to change notification settings - Fork 14
153 lines (137 loc) · 5.93 KB
/
2.x-macos-debug.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
name: macOS (2.x Debug)
on:
schedule:
- cron: "10 16 * * *"
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
env:
TOOLS_BUILD_TYPE: Debug
PR_NUMBER: ${{ github.event.number }}
jobs:
build:
runs-on: macos-latest
steps:
- name: Step that prints name of pull request's base branch
run: |
echo "Pull request's base branch is: ${BASE_BRANCH}"
echo "Pull request's branch is: ${GITHUB_REF##*/}"
echo "Pull request's head ref is: ${GITHUB_HEAD_REF}"
env:
BASE_BRANCH: ${{ github.base_ref }}
if: github.event_name == 'pull_request'
- uses: actions/checkout@v3
with:
fetch-depth: 0 # OR "2" -> To retrieve the preceding commit.
- name: Get changed files
id: changed-files
uses: tj-actions/[email protected]
- name: List all changed files
run: |
for file in ${{ steps.changed-files.outputs.all_changed_files }}; do
echo "$file was changed"
done
- name: Get specific changed files
id: changed-files-specific
uses: tj-actions/[email protected]
with:
files: |
src/*
inc/*
deps/CMakeLists.txt
packaging/tools/*
.github/workflows/2.x-macos-debug.yml
- name: Run step if any of the listed files above change
if: steps.changed-files-specific.outputs.any_changed == 'true'
run: |
echo "One or more files listed above has changed."
- name: Checkout TDengine 2.6
if: steps.changed-files-specific.outputs.any_changed == 'true'
uses: actions/checkout@v2
with:
submodules: recursive
repository: 'taosdata/TDengine'
path: 'TDengine'
ref: '2.6'
- name: Change time zone
if: steps.changed-files-specific.outputs.any_changed == 'true'
run: |
#sudo timedatectl set-timezone Asia/Shanghai
#sudo date
- name: Checkout TDengine's taos-tools to PR number
if: |
(github.event_name == 'pull_request'
&& steps.changed-files-specific.outputs.any_changed == 'true')
run: |
cd TDengine/src/kit/taos-tools
git fetch origin +refs/pull/${{env.PR_NUMBER}}/merge
git checkout -qf FETCH_HEAD
- name: Set up homebrew
if: steps.changed-files-specific.outputs.any_changed == 'true'
run: |
brew update
brew install argp-standalone pkg-config
brew info argp-standalone
- name: Set up Go
if: steps.changed-files-specific.outputs.any_changed == 'true'
uses: actions/setup-go@v3
with:
go-version: 1.17
- name: Build & Install TDengine
if: steps.changed-files-specific.outputs.any_changed == 'true'
run: |
cd TDengine && mkdir debug && cd debug && cmake .. -DBUILD_JDBC=false -DBUILD_TOOLS=true -DTOOLS_BUILD_TYPE=${{env.TOOLS_BUILD_TYPE}} -DTOOLS_SANITIZE=true -DBUILD_HTTP=false && make && sudo make install
# - name: Func Test
# run: |
# cd TDengine/tests/pytest
# pip3 install decorator taospy numpy fabric2 psutil pandas faker toml > /dev/null
# sudo pkill -9 taosadapter || :
# sudo pkill -9 taosd || :
#
# python3 ./test.py -f tools/taosdumpTest.py
# python3 ./test.py -f tools/taosdumpTest2.py
# python3 ./test.py -f tools/taosdumpTest3.py
# python3 ./test.py -f tools/taosdumpTestNanoSupport.py
#
# - name: System Test
# run: |
# cd TDengine/tests/system-test
# if find 5-taos-tools/taosdump -name "*.py"|grep -q .;
# then
# for i in `find 5-taos-tools/taosdump -name "*.py"`; do python3 ./test.py -f $i > /dev/null 2>&1 && echo -e "\033[32m $i success! \033[0m"|| echo -e "\033[31m $i failed! \033[0m" | tee -a taosdump-failed.txt; done
# fi
#
# # if [ -d 5-taos-tools/taosbenchmark ];
# #then
# # if find 5-taos-tools/taosbenchmark -name "*.py"|grep -q .;
# # then
# # for i in `find 5-taos-tools/taosbenchmark -name "*.py"`; do python3 ./test.py -f $i > /dev/null 2>&1 && echo -e "\033[32m $i success! \033[0m"|| echo -e "\033[31m $i failed! \033[0m" | tee -a taosbenchmark-failed.txt; done
# # fi
# #fi
#
# - name: Develop Test
# run: |
# cd TDengine/tests/develop-test
#
# if find 5-taos-tools/taosdump -name "*.py"|grep -q .;
# then
# for i in `find 5-taos-tools/taosdump -name "*.py"`; do python3 ./test.py -f $i > /dev/null 2>&1 && echo -e "\033[32m $i success! \033[0m"|| echo -e "\033[31m $i failed! \033[0m" | tee -a taosdump-failed.txt ;done
# fi
#
# if [ -d 5-taos-tools/taosbenchmark ];
# then
# if find 5-taos-tools/taosbenchmark -name "*.py"|grep -q .;
# then
# for i in `find 5-taos-tools/taosbenchmark -name "*.py"`; do python3 ./test.py -f $i > /dev/null 2>&1 && echo -e "\033[32m $i success! \033[0m"|| echo -e "\033[31m $i failed! \033[0m" | tee -a taosbenchmark-failed.txt; done
# fi
# fi
#
# if [ -f taosdump-failed.txt ]; then
# cat taosdump-failed.txt;
# exit 1;
# fi
# if [ -f taosbenchmark-failed.txt ]; then
# cat taosbenchmark-failed.txt;
# exit 1;
# fi