47 lines
1.1 KiB
YAML
47 lines
1.1 KiB
YAML
language: c
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
dist: xenial
|
|
sudo: required
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- gcc-5
|
|
- g++-5
|
|
- make
|
|
- libglfw3
|
|
- libglfw3-dev
|
|
- libfreetype6-dev
|
|
- libcurl3-dev
|
|
- os: windows
|
|
language: sh
|
|
filter_secrets: false
|
|
- os: osx
|
|
osx_image: xcode10.2
|
|
addons:
|
|
homebrew:
|
|
packages:
|
|
- freetype
|
|
- glfw
|
|
script:
|
|
- |
|
|
if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then
|
|
sudo unlink /usr/bin/gcc && sudo ln -s /usr/bin/gcc-5 /usr/bin/gcc
|
|
fi
|
|
- |
|
|
if [[ "${TRAVIS_OS_NAME}" == "windows" ]]; then
|
|
echo "Running make.bat..."
|
|
./make.bat
|
|
./v.exe -debug -o v2.exe compiler
|
|
gcc -Ithirdparty/microsoft_craziness -DUNICODE -D_UNICODE .v2.exe.c thirdparty/microsoft_craziness/microsoft_craziness.c -o v2.exe -lole32 -ladvapi32 -loleaut32
|
|
./v2.exe -o v3.exe compiler
|
|
fi
|
|
- |
|
|
if [[ "${TRAVIS_OS_NAME}" != "windows" ]]; then
|
|
make
|
|
make test
|
|
fi
|