forked from duckdb/duckdb
-
Notifications
You must be signed in to change notification settings - Fork 0
113 lines (92 loc) · 2.76 KB
/
Copy pathRegression.yml
File metadata and controls
113 lines (92 loc) · 2.76 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
name: Regression
on: [push, pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || '' }}-${{ github.base_ref || '' }}
cancel-in-progress: true
defaults:
run:
shell: bash
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
AWS_ACCESS_KEY_ID: AKIAVBLKPL2ZW2T7TYFQ
AWS_SECRET_ACCESS_KEY: ${{ secrets.NODE_PRE_GYP_SECRETACCESSKEY }}
NODE_AUTH_TOKEN: ${{secrets.NODE_AUTH_TOKEN}}
jobs:
regression-test-tpch:
name: Regression Test (TPC-H)
runs-on: ubuntu-20.04
env:
CC: gcc-10
CXX: g++-10
GEN: ninja
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-python@v2
with:
python-version: '3.7'
- name: Install
run: sudo apt-get update -y -qq && sudo apt-get install -y -qq ninja-build && pip install requests && pip install numpy
- name: Build
run: |
git clone https://github.com/duckdb/duckdb.git
cd duckdb/tools/pythonpkg
python setup.py install
cd ../../../tools/pythonpkg
python setup.py --package_name=duckcurrent install
- name: Regression Test TPC-H SF1
run: python scripts/regression_test.py --benchmark=tpch
regression-test-tpcds:
name: Regression Test (TPC-DS)
runs-on: ubuntu-20.04
needs: regression-test-tpch
env:
CC: gcc-10
CXX: g++-10
GEN: ninja
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-python@v2
with:
python-version: '3.7'
- name: Install
run: sudo apt-get update -y -qq && sudo apt-get install -y -qq ninja-build && pip install requests && pip install numpy
- name: Build
run: |
git clone https://github.com/duckdb/duckdb.git
cd duckdb/tools/pythonpkg
python setup.py install
cd ../../../tools/pythonpkg
python setup.py --package_name=duckcurrent install
- name: Regression Test TPC-DS SF1
run: python scripts/regression_test.py --benchmark=tpcds
regression-test-h20ai:
name: Regression Test (H2OAI)
runs-on: ubuntu-20.04
needs: regression-test-tpch
env:
CC: gcc-10
CXX: g++-10
GEN: ninja
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-python@v2
with:
python-version: '3.7'
- name: Install
run: sudo apt-get update -y -qq && sudo apt-get install -y -qq ninja-build && pip install requests && pip install numpy
- name: Build
run: |
git clone https://github.com/duckdb/duckdb.git
cd duckdb/tools/pythonpkg
python setup.py install
cd ../../../tools/pythonpkg
python setup.py --package_name=duckcurrent install
- name: Regression Test H2OAI
run: python scripts/regression_test.py --benchmark=h2oai