Skip to content

Commit

Permalink
Add: install benchmark
Browse files Browse the repository at this point in the history
  • Loading branch information
mjshakir committed Dec 1, 2024
1 parent 4584a15 commit 15c2d55
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu_X86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions/checkout@v2

- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y libgtest-dev cmake
run: sudo apt-get update && sudo apt-get install -y libgtest-dev libbenchmark-dev cmake

- name: Setup CMake and Ninja
uses: lukka/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu_arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions/checkout@v2

- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y libgtest-dev cmake
run: sudo apt-get update && sudo apt-get install -y libgtest-dev libbenchmark-dev cmake

- name: Setup CMake and Ninja
uses: lukka/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu_riscv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions/checkout@v2

- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y libgtest-dev cmake
run: sudo apt-get update && sudo apt-get install -y libgtest-dev libbenchmark-dev cmake

- name: Setup CMake and Ninja
uses: lukka/[email protected]
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/windows_arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ jobs:
vcpkg search gtest
vcpkg install gtest:arm64-windows
vcpkg integrate install
- name: Install Benchmark
run: |
vcpkg search benchmark
vcpkg install benchmark:x64-windows
vcpkg integrate install
- name: Setup CMake and Ninja
uses: lukka/[email protected]
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/windows_x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ jobs:
vcpkg install gtest:x64-windows
vcpkg integrate install
- name: Install Benchmark
run: |
vcpkg search benchmark
vcpkg install benchmark:x64-windows
vcpkg integrate install
- name: Setup CMake and Ninja
uses: lukka/[email protected]

Expand Down

0 comments on commit 15c2d55

Please sign in to comment.