Skip to content

Commit fdf69ca

Browse files
author
nikolai.shipilov
committed
Fix
1 parent 770c83d commit fdf69ca

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,24 @@ jobs:
7171
ref: other/module-extract-prep
7272
path: opendaq
7373

74-
- name: Configure, build and install opendaq
74+
- name: Configure and build
7575
working-directory: opendaq
7676
run: |
7777
cmake -B build/output -S . -G "${{ matrix.generator }}" -DOPENDAQ_ENABLE_TESTS=OFF -DCMAKE_BUILD_TYPE=Release
7878
cmake --build build/output --config Release
79+
80+
81+
- name: Install opendaq
82+
working-directory: opendaq
83+
if: matrix.os == 'ubuntu-latest'
84+
run: |
7985
sudo cmake --build build/output --target install
86+
87+
- name: Install opendaq
88+
working-directory: opendaq
89+
if: matrix.os == 'windows-latest'
90+
run: |
91+
cmake --build build/output --target install
8092
8193
- name: Checkout project repo
8294
uses: actions/checkout@v4

0 commit comments

Comments
 (0)