Browse Source

CI: Only build legacy plugins on win32/win64, for now

tags/2020-12-27
falkTX 3 years ago
parent
commit
dae6c936c2
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      .travis/script.sh

+ 3
- 3
.travis/script.sh View File

@@ -5,12 +5,12 @@ set -e
export DESTDIR=/tmp/distrho-ports

if [ "${TARGET}" = "win32" ]; then
EXTRA_ARGS="--cross-file scripts/meson/win32.ini"
EXTRA_ARGS="--cross-file scripts/meson/win32.ini -Dbuild-legacy-only=true"
elif [ "${TARGET}" = "win64" ]; then
EXTRA_ARGS="--cross-file scripts/meson/win64.ini"
EXTRA_ARGS="--cross-file scripts/meson/win64.ini -Dbuild-legacy-only=true"
fi

echo "meson build --buildtype release ${EXTRA_ARGS}"
echo "meson build --buildtype=release ${EXTRA_ARGS}"
meson build --buildtype=release --prefix=/usr ${EXTRA_ARGS}
ninja -v -C build
ninja -C build install


Loading…
Cancel
Save