File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed
Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments