Skip to content

Commit

Permalink
Fix fucking github action
Browse files Browse the repository at this point in the history
  • Loading branch information
hit9 committed May 19, 2024
1 parent 4b94248 commit bd5f831
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,14 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Install gcc-13
run: |
if [[ "${{ matrix.os }}" == "ubuntu-latest" ]]; then
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y && sudo apt-get update -y && sudo apt-get install gcc-13 g++-13 -y
fi;
exit 0
shell: bash

- name: Install Conan
run: pip install conan

Expand Down Expand Up @@ -70,4 +78,4 @@ jobs:

- name: Run Benchmark
working-directory: ./tests/build
run: ./tests/bt_benchmark
run: ./bt_benchmark

0 comments on commit bd5f831

Please sign in to comment.