Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
Browse files
Add basic linux build on travis
  • Loading branch information
Filip Gawin committed May 18, 2020
1 parent ad0b992 commit b55ba13586ad297718a4cf84ceec7e2de88a76f5
Showing with 15 additions and 0 deletions.
  1. +15 −0 .travis.yml
@@ -0,0 +1,15 @@
language: cpp
os: linux
dist: focal
matrix:
include:
- env: TARGET=release_linux-amd64-librw_gl3_glfw-oal
- env: TARGET=debug_linux-amd64-librw_gl3_glfw-oal
script:
- sudo apt-get update
- sudo apt-get -y install linux-libc-dev libopenal-dev libglew-dev libglfw3-dev libsndfile1-dev libmpg123-dev gcc-8-multilib g++-8-multilib
- mkdir -p "$TRAVIS_BUILD_DIR/build"
- cd "$TRAVIS_BUILD_DIR"
- ./premake5Linux --with-librw gmake2
- cd build
- CC=gcc-8 CXX=g++-8 make config=$TARGET -j4 verbose=1

0 comments on commit b55ba13

Please sign in to comment.