diff options
author | tech4me <guiwanglong@gmail.com> | 2018-08-31 20:08:03 +0200 |
---|---|---|
committer | tech4me <guiwanglong@gmail.com> | 2018-09-19 14:22:14 -0400 |
commit | a8f54f96fc0b91dee8a0ea6daf9dfd55b46a9178 (patch) | |
tree | 92c57ae3f11b1f9ad5c7cdd76956c38b77984d44 /.travis/linux-mingw/build.sh | |
parent | c69dc5acf9faf3817337dfd5883fd3ef55a73326 (diff) |
travis: running mingw build on travis ci
This commit also fixed a broken cmake dependency with unicorn
Diffstat (limited to '.travis/linux-mingw/build.sh')
-rwxr-xr-x | .travis/linux-mingw/build.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.travis/linux-mingw/build.sh b/.travis/linux-mingw/build.sh new file mode 100755 index 000000000..be03cc0f3 --- /dev/null +++ b/.travis/linux-mingw/build.sh @@ -0,0 +1,3 @@ +#!/bin/bash -ex +mkdir "$HOME/.ccache" || true +docker run --env-file .travis/common/travis-ci.env -v $(pwd):/yuzu -v "$HOME/.ccache":/root/.ccache ubuntu:18.04 /bin/bash -ex /yuzu/.travis/linux-mingw/docker.sh |