Skip to content

Commit

Permalink
trying out gnu lib instead of msvc for windows v2
Browse files Browse the repository at this point in the history
  • Loading branch information
mzieniukbw committed Sep 19, 2024
1 parent e5e7975 commit 1eedbd9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,14 +111,16 @@ jobs:
working-directory: languages/cpp
shell: bash
run: |
mv include/release/* include/
if [[ '${{ runner.os }}' == 'macOS' || '${{ runner.os }}' == 'Linux' ]]; then
mv include/release/* include/
ls include/libbitwarden_c.* || { echo "Missing libbitwarden_c.*"; exit 1; }
rmdir include/release
fi
if [[ '${{ runner.os }}' == 'Windows' ]]; then
mv include/release-windows/* include/
ls include/bitwarden_c.dll || { echo "Missing bitwarden_c.dll"; exit 1; }
rmdir include/release-windows
fi
rmdir include/release
# - name: Install libraries for Windows
# if: runner.os == 'Windows' && steps.cache.outputs.cache-hit != 'true'
Expand Down

0 comments on commit 1eedbd9

Please sign in to comment.