Skip to content

Commit 5453654

Browse files
committed
Move benchcomp YAML file to avoid spurious GitHub errors
GitHub reported "No event triggers defined in `on`" for `github/workflows/benchcomp-config.yaml`, which was never to define any GitHub actions in the first place. Move the Benchcomp config and the Benchcomp parser to a directory of their own to avoid these spurious warnings.
1 parent e7b0557 commit 5453654

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/benchcomp-config.yaml renamed to .github/performance/benchcomp-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ run:
2525
suites:
2626
aws-c-common:
2727
parser:
28-
command: /home/runner/work/cbmc/cbmc/new/.github/workflows/benchcomp-parse_cbmc.py
28+
command: /home/runner/work/cbmc/cbmc/new/.github/performance/benchcomp-parse_cbmc.py
2929
variants:
3030
- aws-c-common@old
3131
- aws-c-common@new

.github/workflows/performance.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,20 +97,20 @@ jobs:
9797
- name: Run benchcomp
9898
run: |
9999
kani.git/tools/benchcomp/bin/benchcomp \
100-
--config new/.github/workflows/benchcomp-config.yaml \
100+
--config new/.github/performance/benchcomp-config.yaml \
101101
run
102102
kani.git/tools/benchcomp/bin/benchcomp \
103-
--config new/.github/workflows/benchcomp-config.yaml \
103+
--config new/.github/performance/benchcomp-config.yaml \
104104
collate
105105
106106
- name: Perf Regression Results Table
107107
run: |
108108
kani.git/tools/benchcomp/bin/benchcomp \
109-
--config new/.github/workflows/benchcomp-config.yaml \
109+
--config new/.github/performance/benchcomp-config.yaml \
110110
visualize --only dump_markdown_results_table >> "$GITHUB_STEP_SUMMARY"
111111
112112
- name: Run other visualizations
113113
run: |
114114
kani.git/tools/benchcomp/bin/benchcomp \
115-
--config new/.github/workflows/benchcomp-config.yaml \
115+
--config new/.github/performance/benchcomp-config.yaml \
116116
visualize --except dump_markdown_results_table

0 commit comments

Comments
 (0)