Skip to content

Commit 34be61d

Browse files
committed
[ci] Add workflow to test standalone histv7
1 parent 849eb48 commit 34be61d

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/histv7.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: 'Standalone histv7'
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- 'hist/histv7/**'
7+
8+
jobs:
9+
build-ubuntu:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Install GoogleTest
13+
run: |
14+
sudo apt-get update
15+
sudo apt-get install libgtest-dev
16+
- name: Checkout
17+
uses: actions/checkout@v4
18+
- name: Configure
19+
run: cmake -B build -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_INSTALL_PREFIX=install hist/histv7
20+
- name: Build
21+
run: cmake --build build
22+
- name: Install
23+
run: cmake --install build
24+
- name: Test
25+
run: ctest --test-dir build --verbose

0 commit comments

Comments
 (0)