diff options
author | Filip Gawin <filip.gawin@zoho.com> | 2021-01-12 21:55:24 +0100 |
---|---|---|
committer | shfil <filip.gawin@zoho.com> | 2021-01-12 21:57:58 +0100 |
commit | 3ae4c0056258570e8471685b58e93ffb288af567 (patch) | |
tree | 72dce088d7d59579d4cad46bb3db9de4e89974bd | |
parent | A bit more of cleanup of CI (diff) | |
download | re3-3ae4c0056258570e8471685b58e93ffb288af567.tar re3-3ae4c0056258570e8471685b58e93ffb288af567.tar.gz re3-3ae4c0056258570e8471685b58e93ffb288af567.tar.bz2 re3-3ae4c0056258570e8471685b58e93ffb288af567.tar.lz re3-3ae4c0056258570e8471685b58e93ffb288af567.tar.xz re3-3ae4c0056258570e8471685b58e93ffb288af567.tar.zst re3-3ae4c0056258570e8471685b58e93ffb288af567.zip |
-rw-r--r-- | .travis.yml | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index c124a9f0..00000000 --- a/.travis.yml +++ /dev/null @@ -1,44 +0,0 @@ -language: cpp -dist: focal -os: linux -jobs: - include: - - env: TARGET=release_linux-amd64-librw_gl3_glfw-oal - os: linux - - env: TARGET=debug_linux-amd64-librw_gl3_glfw-oal - os: linux - - env: TARGET=release_macosx-amd64-librw_gl3_glfw-oal PREMAKE5=premake-5.0.0-alpha15 - compiler: clang - os: osx - osx_image: xcode12u - - env: TARGET=debug_macosx-amd64-librw_gl3_glfw-oal PREMAKE5=premake-5.0.0-alpha15 - compiler: clang - os: osx - osx_image: xcode12u -addons: - apt: - update: true - packages: - - linux-libc-dev - - libopenal-dev - - libglew-dev - - libglfw3-dev - - libsndfile1-dev - - libmpg123-dev - - gcc-8-multilib - - g++-8-multilib - homebrew: - packages: - - libsndfile - - mpg123 - - glew - - glfw - - openal-soft -script: - - mkdir -p "$TRAVIS_BUILD_DIR/build" - - cd "$TRAVIS_BUILD_DIR" - - if [ "$TRAVIS_OS_NAME" = linux ]; then ./premake5Linux --with-librw gmake2; fi - - if [ "$TRAVIS_OS_NAME" = osx ]; then curl -L -o "${PREMAKE5}.zip" "https://github.com/premake/premake-core/releases/download/v5.0.0-alpha15/${PREMAKE5}-src.zip" && unzip -q "${PREMAKE5}.zip" && cd "$PREMAKE5" && make -f Bootstrap.mak osx && cd .. && "./${PREMAKE5}/bin/release/premake5" --with-librw gmake2; fi - - cd build - - if [ "$TRAVIS_OS_NAME" = linux ]; then env CC=gcc-8 CXX=g++-8 make config=$TARGET -j4 verbose=1; fi - - if [ "$TRAVIS_OS_NAME" = osx ]; then make config=$TARGET -j4 verbose=1; fi |