CI: disable cxx bindings on native bootstrap build for mingw

This has been enabled in commit 5894d384f2
by accident when we enabled it on other builds again. We do not need it
for the mingw cross setup and should keep this build minimal and fast.

Spotted by Marcel Hollerbach.
This commit is contained in:
Stefan Schmidt 2020-05-28 10:01:18 +02:00
parent 92455d42a0
commit c9e4c06678
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
#!/bin/sh
mkdir build-bootstrap-native
meson --prefix=/usr/ --libdir=/usr/lib -Dbuild-examples=false -Dbuild-tests=false -Dbindings=cxx build-bootstrap-native
meson --prefix=/usr/ --libdir=/usr/lib -Dbuild-examples=false -Dbuild-tests=false -Dbindings= build-bootstrap-native
ninja -C build-bootstrap-native install
rm -rf build-bootstrap-native
ldconfig