Skip to content

Commit

Permalink
enable travis #1
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmssh committed May 28, 2018
1 parent e1d18a6 commit 6757ddd
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
language:
- c
- cpp

os: linux
compiler: gcc

dist: trusty

env:
- BUILD=x86_64-linux-gnu
CFLAGS=-m64 LDFLAGS=-m64
- BUILD=i686-linux-gnu
CFLAGS=-m32 LDFLAGS=-m32

#environment:
# matrix:
# - CONFIG: Debug64
# CFLAGS=-m64 LDFLAGS=-m64
# BUILD_OPTION: -DDEBUG=ON
# - CONFIG: Release64
# CFLAGS=-m64 LDFLAGS=-m64
# BUILD_OPTION: -DDEBUG=OFF
# - CONFIG: Debug
# CFLAGS=-m32 LDFLAGS=-m32
# BUILD_OPTION: -DDEBUG=ON
# - CONFIG: Release
# CFLAGS=-m32 LDFLAGS=-m32
# BUILD_OPTION: -DDEBUG=OFF

before_script:
- "mkdir build"
- "cd build"
- "cmake ..\drltrace_src
script: "make"

0 comments on commit 6757ddd

Please sign in to comment.