chore: add apache license checker #494
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2023 The CeresDB Authors | |
# | |
# Licensed 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: TSBS Benchmark | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths: | |
- '.github/workflows/**' | |
- 'scrits/run-tsbs.sh' | |
paths-ignore: | |
schedule: | |
- cron: '2 0 * * *' | |
jobs: | |
run-tsbs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Release Disk Quota | |
run: | | |
sudo rm -rf /usr/local/lib/android # release about 10 GB | |
sudo rm -rf /usr/share/dotnet # release about 20GB | |
- name: Cache Rust Dependencies | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo | |
./target | |
key: release-${{ runner.os }}-${{ hashFiles('rust-toolchain') }}-${{ hashFiles('Cargo.lock') }} | |
restore-keys: | | |
release-${{ runner.os }}-${{ hashFiles('rust-toolchain') }}- | |
release-${{ runner.os }}- | |
- name: Ensure Disk Quota | |
run: | | |
make ensure-disk-quota | |
- name: Setup Build Environment | |
run: | | |
sudo apt update | |
sudo apt install --yes protobuf-compiler | |
- name: Build server | |
run: | | |
make build | |
- name: Run TSBS | |
run: | | |
./scripts/run-tsbs.sh | |
echo "NOW=$(TZ=':Asia/Shanghai' date +'%Y-%m-%dT%H_%M_%S')" >> $GITHUB_ENV | |
- name: Update Summary | |
run: | | |
cat tsbs/result.md >> $GITHUB_STEP_SUMMARY | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: bench-${{ env.NOW }} | |
path: | | |
logs/** | |
tsbs/result.md |