Skip to content

Commit

Permalink
Simplify
Browse files Browse the repository at this point in the history
  • Loading branch information
victimsnino committed Aug 31, 2022
1 parent 36741d9 commit 867c6d9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ jobs:

- name: Install deps
if: matrix.config.os != 'windows-latest'
run: sudo apt-get update -q && sudo apt-get install cppcheck libsfml-dev -y -q
run: sudo apt-get update -q && sudo apt-get install clang-tidy cppcheck libsfml-dev -y -q

- name: Restore Catch2
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
with:
issue-number: ${{ steps.source-run-info.outputs.pullRequestNumber }}
comment-author: 'github-actions[bot]'
body-includes: GCC
body-includes: BENCHMARK RESULTS (AUTOGENERATED)

- name: Create comment
if: github.event.workflow_run.event == 'push'
Expand Down
1 change: 1 addition & 0 deletions ci/compare_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

results = pd.read_csv("./gh-pages/results.csv", index_col="id")

print("# BENCHMARK RESULTS (AUTOGENERATED)")
for platform, data in results.groupby("platform"):
indexes = data["commit"].unique()[-2:]
test_data =[v[1] for v in data[data["commit"].isin(indexes)].groupby("commit", sort=False, as_index=False)]
Expand Down

0 comments on commit 867c6d9

Please sign in to comment.