Skip to content

Commit b73db1f

Browse files
committed
ci: work around min CMake version in Tarantool
Compatibility with CMake < 3.5 has been removed from CMake. Add -DCMAKE_POLICY_VERSION_MINIMUM=3.5 to try configuring anyway.
1 parent 81d7866 commit b73db1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test_on_push.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
2828
- name: Install requirements for community
2929
run: |
30-
cmake -S . -B build
30+
cmake -S . -B build -DCMAKE_POLICY_VERSION_MINIMUM=3.5
3131
make -C build bootstrap
3232
3333
# This server starts and listen on 8084 port that is used for tests

0 commit comments

Comments
 (0)