We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6edd49d commit 34586b1Copy full SHA for 34586b1
1 file changed
.ci/scripts/unittest-linux-cmake.sh
@@ -20,6 +20,14 @@ if ! python -c "import tosa_serializer" >/dev/null 2>&1; then
20
fi
21
22
# NOTE: Will be removed when tosa-tools is installed via pypi
23
+ if grep -q "^cmake\\.verbose = true$" "${TOSA_SERIALIZATION_DIR}/pyproject.toml"; then
24
+ sed -i "s/^cmake\\.verbose = true$/build.verbose = true/" \
25
+ "${TOSA_SERIALIZATION_DIR}/pyproject.toml"
26
+ fi
27
+ if grep -q "^dynamic = \\[\"version\"\\]$" "${TOSA_SERIALIZATION_DIR}/pyproject.toml"; then
28
+ sed -i "s/^dynamic = \\[\"version\"\\]$/version = \"0.0.0\"/" \
29
30
31
python -m pip install pybind11==2.10.4
32
CMAKE_POLICY_VERSION_MINIMUM=3.5 BUILD_PYBIND=1 \
33
python -m pip install --no-dependencies \
0 commit comments