1
0
mirror of https://github.com/facebookincubator/mvfst.git synced 2025-04-18 17:24:03 +03:00

regenerate github actions, fix cmake 4 failure

Summary:
X-link: https://github.com/facebook/fb303/pull/65

regenerate github actions before making any actual changes

github runners are on cmake 4 now,  update cmake min version to 3.5 to avoid cmake 4 error: https://cmake.org/cmake/help/latest/release/4.0.html#deprecated-and-removed-features

Reviewed By: markbt

Differential Revision: D72323421

fbshipit-source-id: 5ebae9a37dbfa0b95cf75b20c86d396f8d5aa7ab
This commit is contained in:
Alex Hornby 2025-04-03 07:54:52 -07:00 committed by Facebook GitHub Bot
parent d9a85c0e66
commit b9ef36a6dc

View File

@ -1381,7 +1381,7 @@ class SqliteBuilder(BuilderBase):
copy_if_different(src, dest)
cmake_lists = """
cmake_minimum_required(VERSION 3.1.3 FATAL_ERROR)
cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
project(sqlite3 C)
add_library(sqlite3 STATIC sqlite3.c)
# These options are taken from the defaults in Makefile.msc in