Skip to content

Commit

Permalink
fix: adjust runner
Browse files Browse the repository at this point in the history
  • Loading branch information
everpcpc committed Oct 13, 2023
1 parent 0041615 commit 89f3c03
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/actions/benchmark_cloud/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ runs:
- name: Install script dependencies
shell: bash
run: |
sudo apt-get update -y
sudo apt install -y python3
sudo apt-get update -yq
sudo apt-get install -yq python3
- name: Run Benchmark
working-directory: benchmark/clickbench
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/benchmark_local/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ runs:
- name: Install script dependencies
shell: bash
run: |
sudo apt update -y
sudo apt install -y python3
sudo apt-get update -yq
sudo apt-get install -yq python3
- name: Run Benchmark
working-directory: benchmark/clickbench
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/setup_bendsql/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ runs:
shell: bash
run: |
sudo curl -L -o /etc/apt/sources.list.d/datafuselabs.sources https://repo.databend.rs/deb/datafuselabs.sources
sudo apt update
sudo apt install -y bendsql
sudo apt-get update -yq
sudo apt-get install -yq bendsql
bendsql --version
8 changes: 4 additions & 4 deletions .github/workflows/reuse.benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ jobs:
- uses: actions/checkout@v4
- name: Install Dependencies
run: |
sudo apt update -y
sudo apt install -y python3-jinja2
sudo apt-get update -yq
sudo apt-get install -yq python3-jinja2
- uses: actions/download-artifact@v3
with:
name: benchmark-hits
Expand Down Expand Up @@ -193,8 +193,8 @@ jobs:
- uses: actions/checkout@v4
- name: Install Dependencies
run: |
sudo apt update -y
sudo apt install -y python3-jinja2
sudo apt-get update -yq
sudo apt-get install -yq python3-jinja2
- uses: actions/download-artifact@v3
with:
name: benchmark-${{ matrix.dataset }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reuse.linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ env:

jobs:
check:
runs-on: [self-hosted, X64, Linux, 8c16g, "${{ inputs.runner_provider }}"]
runs-on: [self-hosted, X64, Linux, 16c32g, "${{ inputs.runner_provider }}"]
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -312,7 +312,7 @@ jobs:
timeout-minutes: 20
with:
dirs: ${{ matrix.dirs }}
handlers: mysql,http,clickhouse
handlers: http
- name: Upload failure
if: failure()
uses: ./.github/actions/artifact_failure
Expand Down

0 comments on commit 89f3c03

Please sign in to comment.