mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 06:31:47 +00:00
494789664e
Listing i686-w64-mingw32-gcc as a compiler stopped working. Travis tries to print version before installing it. $ i686-w64-mingw32-gcc --version /home/travis/build.sh: line 201: i686-w64-mingw32-gcc: command not found The command "i686-w64-mingw32-gcc --version" failed and exited with 127 during setup.
22 lines
511 B
YAML
22 lines
511 B
YAML
language: c
|
|
|
|
env:
|
|
# standard builds
|
|
- CC=gcc
|
|
- CC=clang
|
|
# extra libs
|
|
- CC=gcc USE_CODEC_VORBIS=1 USE_FREETYPE=1
|
|
- CC=clang USE_CODEC_VORBIS=1 USE_FREETYPE=1
|
|
# cross-compile using mingw
|
|
- CC= PLATFORM="mingw32" ARCH="x86"
|
|
- CC= PLATFORM="mingw32" ARCH="x86_64"
|
|
|
|
script: ./travis-ci-build.sh
|
|
|
|
before_install:
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get remove -qq -y mingw32
|
|
- sudo apt-get install -q -y libgl1-mesa-dev libsdl1.2-dev libfreetype6-dev mingw-w64
|
|
|
|
notifications:
|
|
email: false
|