Some checks failed
sm-rpc / build (Debug, aarch64-linux-gnu) (push) Failing after 13m15s
sm-rpc / build (Release, mipsel-linux-gnu) (push) Failing after 13m1s
sm-rpc / build (Release, host.gcc) (push) Failing after 13m14s
sm-rpc / build (Release, arm-linux-gnueabihf) (push) Failing after 13m35s
sm-rpc / build (Release, aarch64-linux-gnu) (push) Failing after 13m56s
sm-rpc / build (Debug, mipsel-linux-gnu) (push) Failing after 14m22s
sm-rpc / build (Debug, host.gcc) (push) Failing after 14m49s
sm-rpc / build (Debug, arm-linux-gnueabihf) (push) Failing after 15m13s
14 lines
507 B
Bash
Executable File
14 lines
507 B
Bash
Executable File
#!/bin/bash
|
|
set -ev
|
|
if [[ "$TRAVIS_OS_NAME" = "windows" ]] ; then
|
|
export PATH="c:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\BuildTools\\MSBuild\\15.0\Bin\\":$PATH
|
|
pushd demo\\$TARGET\\
|
|
MSBuild.exe /property:Configuration="Release";Platform="x64"
|
|
MSBuild.exe /property:Configuration="Debug";Platform="x64"
|
|
MSBuild.exe /property:Configuration="Release";Platform="x86"
|
|
MSBuild.exe /property:Configuration="Debug";Platform="x86"
|
|
popd
|
|
else
|
|
pushd demo/$TARGET && make clean && make && popd
|
|
fi
|