11 lines
290 B
Bash
Executable file
11 lines
290 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -ex
|
|
. .travis/docker_container.sh
|
|
|
|
mkdir -p build/${INSTALL_DIR} && cd build
|
|
|
|
buildenv mod-plugin-builder /usr/local/bin/cmake \
|
|
-DSFIZZ_SYSTEM_PROCESSOR=armv7-a \
|
|
-DCMAKE_BUILD_TYPE=Release -DSFIZZ_JACK=OFF ..
|
|
buildenv mod-plugin-builder make -j$(nproc)
|