-
Notifications
You must be signed in to change notification settings - Fork 435
37 lines (34 loc) · 1.78 KB
/
velox_tpch_bench.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
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Velox backend Performance Tests On Comments
on:
issue_comment:
types: [created, edited, deleted]
jobs:
velox-trigger-benchmark-on-comment:
# check the comment if it contains the keywords
if: ${{ github.event.issue.pull_request && contains(github.event.comment.body, '/Benchmark Velox') }}
runs-on: velox-self-hosted
container: ubuntu:22.04
steps:
- uses: actions/checkout@v4
- run: apt-get update && apt-get install ca-certificates -y && update-ca-certificates
- run: sed -i 's/http\:\/\/archive.ubuntu.com/https\:\/\/mirrors.ustc.edu.cn/g' /etc/apt/sources.list
- run: apt-get update
- run: apt-get install -y curl
- name: trigger_tpch_bench
run: |
branchname=origin/pr/${{ github.event.issue.number }}/head
curl --noproxy 10.0.0.68 -L -X POST http://10.0.0.68:8080/job/Gluten_Perf_Github_Action_Check/build --user jenkins:11fd1b5a82bfd638bd9b3749c96b324ff2 --data-urlencode json='{"parameter": [{"name":"sha1", "value":"'$branchname'"}]}'