Skip to content

Commit 3b6cd40

Browse files
committed
Add install job
1 parent 98db880 commit 3b6cd40

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed

.github/workflows/linux.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@ jobs:
5050
working-directory: build
5151
run: cmake --build . --target run_tests_with_junit_report
5252

53+
- name: Install
54+
working-directory: build
55+
run: cmake --install .
56+
5357
linux_build_fetch_from_source:
5458
runs-on: ubuntu-latest
5559
strategy:
@@ -80,3 +84,7 @@ jobs:
8084
- name: Run tests
8185
working-directory: build
8286
run: cmake --build . --target run_tests_with_junit_report
87+
88+
- name: Install
89+
working-directory: build
90+
run: cmake --install .

.github/workflows/osx.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ jobs:
5555
working-directory: build
5656
run: cmake --build . --target run_tests_with_junit_report
5757

58+
- name: Install
59+
working-directory: build
60+
run: cmake --install .
61+
5862
osx_build_fetch_from_source:
5963
runs-on: macos-latest
6064
strategy:
@@ -90,3 +94,7 @@ jobs:
9094
- name: Run tests
9195
working-directory: build
9296
run: cmake --build . --target run_tests_with_junit_report
97+
98+
- name: Install
99+
working-directory: build
100+
run: cmake --install .

.github/workflows/windows.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@ jobs:
5151
run: |
5252
cmake --build . --target run_tests
5353
54+
- name: Install
55+
working-directory: build
56+
run: cmake --install .
57+
5458
windows_build_fetch_from_source:
5559
runs-on: windows-latest
5660
strategy:
@@ -80,3 +84,7 @@ jobs:
8084
- name: Run tests
8185
working-directory: build
8286
run: cmake --build . --target run_tests_with_junit_report
87+
88+
- name: Install
89+
working-directory: build
90+
run: cmake --install .

0 commit comments

Comments
 (0)