-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
* add mingw64 build to travis CI * Make .travis-lin-mingw.sh executable * .travis-lin-mingw.sh: make build dir * show $PWD in travis-lin-mingw * update .travis-lin-mingw.sh * --- * update .travis-lin-mingw.sh * update p7zip cmd * fix sign/unsign comparioson in usb.c * revert call .travis.sh * clean up .travis-lin-mingw.sh
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/bash | ||
|
||
DIR=$PWD | ||
|
||
if [ "$TRAVIS_OS_NAME" == "linux" ]; then | ||
echo "WORK DIR:$DIR" | ||
mkdir -p $DIR/build/linux-mingw32-release | ||
cd $DIR/build/linux-mingw32-release | ||
echo "cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=./cmake/linux-mingw32.cmake -DCMAKE_INSTALL_PREFIX=$PWD/_install $DIR" | ||
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=./cmake/linux-mingw32.cmake -DCMAKE_INSTALL_PREFIX=$PWD/_install $DIR | ||
echo "make" | ||
make | ||
fi | ||
|
||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
slyshykO
Author
Collaborator
|
This script causes travis CI to fail on linux builds:
The command "./.travis-lin-mingw.sh" exited with 2.