mirror of
https://github.com/KhronosGroup/Vulkan-Hpp
synced 2024-11-08 13:40:08 +00:00
837a5d6a23
* travis: Build with different, and a newer, gcc version * travis: Also enable -Wall for mini-test * travis: Avoid 'unused variable' in mini-test
50 lines
1.3 KiB
YAML
50 lines
1.3 KiB
YAML
# Build Configuration for Travis CI
|
|
# https://travis-ci.org
|
|
|
|
dist: trusty
|
|
sudo: false
|
|
language: cpp
|
|
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- gcc-5
|
|
- g++-5
|
|
env: GCC_VERSION=5
|
|
compiler: gcc-5
|
|
|
|
- os: linux
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- gcc-8
|
|
- g++-8
|
|
env: GCC_VERSION=8
|
|
compiler: gcc-8
|
|
|
|
install:
|
|
- if [[ "${GCC_VERSION}" != "" ]]; then export CXX="g++-${GCC_VERSION}"; export CC="gcc-${GCC_VERSION}"; fi
|
|
|
|
script:
|
|
- cmake --version
|
|
- cmake -H. -B/tmp/build
|
|
- make -C /tmp/build
|
|
- /tmp/build/VulkanHppGenerator
|
|
- echo "#include \"vulkan.hpp\"" > /tmp/test.cpp
|
|
- echo "int myCreateInstance()" >> /tmp/test.cpp
|
|
- echo "{" >> /tmp/test.cpp
|
|
- echo " vk::Instance inst;" >> /tmp/test.cpp
|
|
- echo " auto const inst_info = vk::InstanceCreateInfo();" >> /tmp/test.cpp
|
|
- echo " vk::Result result = vk::createInstance(&inst_info, nullptr, &inst);" >> /tmp/test.cpp
|
|
- echo " return static_cast<int> (result);" >> /tmp/test.cpp
|
|
- echo "}" >> /tmp/test.cpp
|
|
- cat /tmp/test.cpp
|
|
- ${CXX} -std=c++11 -Wall -Ivulkan -IVulkan-Headers/include -c /tmp/test.cpp
|