wut/.travis.yml

50 lines
1.7 KiB
YAML
Raw Normal View History

2017-06-02 14:49:09 +02:00
language: cpp
matrix:
include:
- os: linux
2018-05-23 00:08:13 +02:00
sudo: required
2017-06-02 14:49:09 +02:00
dist: trusty
- os: osx
2018-05-23 00:08:13 +02:00
osx_image: xcode9.3
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- sourceline: 'ppa:cginternals/backports-ppa'
packages:
- gcc-7
- g++-7
- zlib1g-dev
2017-06-02 14:49:09 +02:00
cache:
directories:
- "$HOME/.local"
git:
submodules: true
2018-05-23 00:08:13 +02:00
install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 90; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-7 90; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then wget https://github.com/devkitPro/pacman/releases/download/devkitpro-pacman-1.0.1/devkitpro-pacman.deb -O /tmp/devkitpro-pacman.deb; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo dpkg -i /tmp/devkitpro-pacman.deb; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then wget https://github.com/devkitPro/pacman/releases/download/devkitpro-pacman-1.0.1/devkitpro-pacman-installer.pkg -O /tmp/devkitpro-pacman-installer.pkg; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then sudo installer -pkg /tmp/devkitpro-pacman-installer.pkg -target /; fi
- yes | sudo dkp-pacman -Syu devkitPPC
- export DEVKITPPC=/opt/devkitpro/devkitPPC
2017-06-02 14:49:09 +02:00
script:
- cd "$TRAVIS_BUILD_DIR"
2018-05-23 00:08:13 +02:00
- mkdir build && cd build
- cmake -DCMAKE_INSTALL_PREFIX=wut_install ../
- make -j4 install
- export WUT_ROOT=$PWD/wut_install
- cd ../
- cd samples/helloworld
- mkdir build && cd build
2018-05-23 13:35:24 +02:00
- chmod +x $WUT_ROOT/bin/elf2rpl
2018-05-23 00:08:13 +02:00
- cmake -DCMAKE_TOOLCHAIN_FILE=$WUT_ROOT/share/wut.toolchain.cmake -DCMAKE_INSTALL_PREFIX=$WUT_ROOT/samples ../
- make -j4 VERBOSE=TRUE install