-
Notifications
You must be signed in to change notification settings - Fork 6
199 lines (177 loc) · 5.6 KB
/
test.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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
name: "hugegraph-py-test CI"
on:
push:
branches:
- master
pull_request:
schedule:
- cron: '0 17 */3 * *'
workflow_dispatch:
permissions: write-all
env:
release_version: 1.3.0
CI: github
jobs:
# job: openSource and no auth
disable_auth:
name: disable_auth
runs-on: ubuntu-latest
strategy:
fail-fast: false
# max-parallel: 3
matrix:
python-version: ["3.9", "3.10"]
java-version: ['11'] # java8 dropped > 1.3.0
# TODO: use 'enable_auth' matrix to replace the duplicate CI code
steps:
- name: pull python code
uses: actions/checkout@v4
with:
fetch-depth: 5
- name: Install Java ${{ matrix.java-version }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java-version }}
distribution: 'adopt'
# TODO: it need check the pom.xml, need refactor the logic
# cache: 'maven'
- name: cache maven repository
uses: actions/cache@v3
with:
path: ~/.m2/repository
# due to lack pom.xml file, so use requirements.txt to hash first
key: ${{ runner.os }}-maven-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: 'x64'
cache: 'pip'
- name: install python dependencies
run: |
python -m pip install --upgrade pip
pip install -r ./requirements.txt
- name: deploy hugegraph
run: |
python src/deploy_start.py all
- name: decompress dataset.zip
run: |
unzip src/config/dataset.zip -d src/config/
- name: run test cases
run: |
pytest --html=test.html --capture=tee-sys ||
(tail -500 /home/runner/work/hugegraph-test/hugegraph-test/graph/hugegraph-toolchain/*/*/logs/hugegraph-hubble.log && exit 1)
# job: enable auth test
enable_auth:
name: enable_auth
runs-on: ubuntu-latest
strategy:
fail-fast: false
# max-parallel: 3
matrix:
python-version: ["3.9", "3.10"]
java-version: ['11']
steps:
- name: pull python code
uses: actions/checkout@v4
with:
fetch-depth: 5
- name: Install Java ${{ matrix.java-version }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java-version }}
distribution: 'adopt'
# cache: 'maven'
- name: cache maven repository
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
architecture: 'x64'
- name: install python dependencies
run: |
python -m pip install --upgrade pip
pip install -r ./requirements.txt
- name: deploy hugegraph
run: |
sed -i -e "s/^is_auth.*$/is_auth = True/g" src/config/basic_config.py
python src/deploy_start.py all
- name: decompress dataset.zip
run: |
unzip src/config/dataset.zip -d src/config/
- name: run test cases
run: |
pytest --html=test.html --capture=tee-sys
# TODO: clean it after all CI code is refactored
# # job: openSource and no auth with https
# disable_auth_https:
# name: openSource and no auth with https
# runs-on: ubuntu-latest
# strategy:
# max-parallel: 3
# matrix:
# python-version: ["3.10"]
# java-version: ['8', '11']
#
# steps:
# - name: Install Java ${{ matrix.java-version }}
# uses: actions/setup-java@v4
# with:
# java-version: ${{ matrix.java-version }}
# distribution: 'adopt'
#
# - name: cache maven repository
# uses: actions/cache@v3
# with:
# path: ~/.m2/repository
# key: ${{ runner.os }}-maven-${{ hashFiles('**/requirements.txt') }}
# restore-keys: |
# ${{ runner.os }}-maven-
#
# - name: Set up Python ${{ matrix.python-version }}
# uses: actions/setup-python@v4
# with:
# python-version: ${{ matrix.python-version }}
# architecture: 'x64'
#
# - name: cache python dependencies
# uses: actions/cache@v3
# id: cache-pip
# with:
# path: ~/.cache/pip
# key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
# restore-keys: |
# ${{ runner.os }}-pip-
#
# - name: checkout python scripts
# uses: actions/checkout@v4
# with:
# fetch-depth: 2
#
# - name: install python dependencies
# run: |
# python -m pip install --upgrade pip
# pip install -r ./requirements.txt
#
# - name: deploy hugegraph
# run: |
# sed -i -e "s/^is_https.*$/is_https = True/g" src/config/basic_config.py
# python src/deploy_start.py all
#
# - name: decompress dataset.zip
# run: |
# unzip src/config/dataset.zip
# mv dataset src/config/
#
# - name: run test cases
# run: |
# pytest --html=test.html --capture=tee-sys