diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fa9cfed54..41bbb031e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -78,14 +78,14 @@ jobs: - name: cmake (win) # -G "Visual Studio 15 2017" - run: cmake -S . -B out -DCMAKE_INSTALL_PREFIX=out/install -DCMAKE_BUILD_TYPE=RelWithDebInfo + run: cmake -S . -B out -DCMAKE_INSTALL_PREFIX=out/install if: matrix.os == 'windows-latest' - name: build - run: cmake --build out --config RelWithDebInfo + run: cmake --build out --config Release - name: install - run: cmake --install out --config RelWithDebInfo + run: cmake --install out --config Release - name: strip run: find out/install/ -type f -perm -u=x -exec strip -x {} + |