Fix travis BUILD
This commit is contained in:
parent
a7671fa2cd
commit
fa3edace6a
10
.travis.yml
10
.travis.yml
|
@ -22,17 +22,19 @@ matrix:
|
||||||
# LLVMGold.so is not installed correctly
|
# LLVMGold.so is not installed correctly
|
||||||
- env: BUILD=true CONFIG=Release
|
- env: BUILD=true CONFIG=Release
|
||||||
|
|
||||||
dist: trusty
|
|
||||||
sudo: required
|
sudo: required
|
||||||
addons:
|
addons:
|
||||||
apt:
|
apt:
|
||||||
sources:
|
sources:
|
||||||
# - ubuntu-toolchain-r-test
|
# - ubuntu-toolchain-r-test
|
||||||
- llvm-toolchain-precise
|
- llvm-toolchain-trusty
|
||||||
packages:
|
packages:
|
||||||
- clang-3.8
|
- clang-3.8
|
||||||
- clang-format-3.8
|
- clang-format-3.8
|
||||||
- libc++-dev
|
- libc++-dev
|
||||||
|
- libc++abi-dev
|
||||||
|
- libgtk-3-dev
|
||||||
|
- liblz4-dev
|
||||||
|
|
||||||
git:
|
git:
|
||||||
# We handle submodules ourselves in xenia-build setup.
|
# We handle submodules ourselves in xenia-build setup.
|
||||||
|
@ -43,6 +45,10 @@ before_script:
|
||||||
- export CC=clang-3.8
|
- export CC=clang-3.8
|
||||||
# Dump useful info.
|
# Dump useful info.
|
||||||
- $CXX --version
|
- $CXX --version
|
||||||
|
# Add Vulkan dependencies
|
||||||
|
- wget http://mirrors.kernel.org/ubuntu/pool/universe/v/vulkan/libvulkan1_1.0.42.0+dfsg1-1ubuntu1~16.04.1_amd64.deb
|
||||||
|
- wget http://mirrors.kernel.org/ubuntu/pool/universe/v/vulkan/libvulkan-dev_1.0.42.0+dfsg1-1ubuntu1~16.04.1_amd64.deb
|
||||||
|
- sudo dpkg -i libvulkan1_1.0.42.0+dfsg1-1ubuntu1~16.04.1_amd64.deb libvulkan-dev_1.0.42.0+dfsg1-1ubuntu1~16.04.1_amd64.deb
|
||||||
# Prepare environment (pull dependencies, build tools).
|
# Prepare environment (pull dependencies, build tools).
|
||||||
- travis_retry ./xenia-build setup
|
- travis_retry ./xenia-build setup
|
||||||
|
|
||||||
|
|
|
@ -34,8 +34,8 @@ filter({})
|
||||||
|
|
||||||
characterset("Unicode")
|
characterset("Unicode")
|
||||||
flags({
|
flags({
|
||||||
--"ExtraWarnings", -- Sets the compiler's maximum warning level.
|
"ExtraWarnings", -- Sets the compiler's maximum warning level.
|
||||||
"FatalWarnings", -- Treat warnings as errors.
|
--"FatalWarnings", -- Treat warnings as errors.
|
||||||
})
|
})
|
||||||
|
|
||||||
filter("kind:StaticLib")
|
filter("kind:StaticLib")
|
||||||
|
|
Loading…
Reference in New Issue