forked from tailcallhq/tailcall
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a968446
commit ac4773d
Showing
1 changed file
with
34 additions
and
33 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,39 @@ | ||
iai-callgrind: | ||
name: iai-callgrind | ||
on: | ||
push: | ||
branches: | ||
- "**" | ||
release: | ||
types: | ||
- published | ||
jobs: | ||
benchmark: | ||
name: build_time_check | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
name: iai-callgrind | ||
on: | ||
push: | ||
branches: | ||
- "**" | ||
release: | ||
types: | ||
- published | ||
jobs: | ||
benchmark: | ||
name: build_time_check | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install iai-callgrind-runner | ||
run: cargo install --version 0.7.3 iai-callgrind-runner | ||
- name: Install iai-callgrind-runner | ||
run: cargo install --version 0.7.3 iai-callgrind-runner | ||
|
||
- name: Install Valgrind | ||
run: sudo apt-get update && sudo apt-get install valgrind | ||
- name: Install Valgrind | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install valgrind | ||
- name: Run Benchmarks | ||
run: | | ||
echo -n > benches/iai-callgrind/benchmarks.txt | ||
cargo bench --bench json_like_bench_iai-callgrind -- --save-baseline change >> benches/iai-callgrind/benchmarks.txt | ||
cargo bench --bench data_loader_bench_iai-callgrind -- --save-baseline change >> benches/iai-callgrind/benchmarks.txt | ||
cargo bench --bench impl_path_string_for_evaluation_context_iai-callgrind -- --save-baseline change >> benches/iai-callgrind/benchmarks.txt | ||
cargo bench --bench request_template_bench_iai-callgrind -- --save-baseline change >> benches/iai-callgrind/benchmarks.txt | ||
- name: Run Benchmarks | ||
run: | | ||
echo -n > benches/iai-callgrind/benchmarks.txt | ||
cargo bench --bench json_like_bench_iai-callgrind -- --save-baseline change >> benches/iai-callgrind/benchmarks.txt | ||
cargo bench --bench data_loader_bench_iai-callgrind -- --save-baseline change >> benches/iai-callgrind/benchmarks.txt | ||
cargo bench --bench impl_path_string_for_evaluation_context_iai-callgrind -- --save-baseline change >> benches/iai-callgrind/benchmarks.txt | ||
cargo bench --bench request_template_bench_iai-callgrind -- --save-baseline change >> benches/iai-callgrind/benchmarks.txt | ||
- name: Manipulate Benchmark File | ||
run: sed -i 's/ \{1,\}\([0-9]\)/\1/g' benches/iai-callgrind/benchmarks.txt | ||
- name: Manipulate Benchmark File | ||
run: sed -i 's/ \{1,\}\([0-9]\)/\1/g' benches/iai-callgrind/benchmarks.txt | ||
|
||
- name: Execute build_time_compare.sh | ||
run: | | ||
chmod +x .github/scripts/build_time_compare.sh | ||
./.github/scripts/build_time_compare.sh | ||
- name: Execute build_time_compare.sh | ||
run: | | ||
chmod +x .github/scripts/build_time_compare.sh | ||
./.github/scripts/build_time_compare.sh |