Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/reusable_compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -208,13 +208,18 @@ jobs:
run: cmake --install ${{github.workspace}}/latest_version/build --config Debug

- name: Configure "tag" UMF build
# NOTE: we need to disable warning 4068 (unknown pragma) in the "tag" version
Comment thread
PatKamin marked this conversation as resolved.
# as the fix was implemented in the newer version. Re-enable warning 4068
# after updating the compatibility tag to a version newer than v1.0.1.
working-directory: ${{github.workspace}}/tag_version
run: >
cmake
-B "${{github.workspace}}/tag_version/build"
-DCMAKE_PREFIX_PATH="${{env.VCPKG_PATH}}"
-DCMAKE_C_COMPILER=cl
-DCMAKE_CXX_COMPILER=cl
-DCMAKE_C_FLAGS="/wd4068"
-DCMAKE_CXX_FLAGS="/wd4068 /EHsc"
-DUMF_BUILD_SHARED_LIBRARY=ON
-DUMF_BUILD_TESTS=ON
-DUMF_BUILD_EXAMPLES=ON
Expand Down
Loading