Skip to content

Commit 36d3e68

Browse files
committed
Add Travis CI with gluac v20151107.
1 parent be887de commit 36d3e68

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

.travis.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
sudo: false
2+
language: c
3+
4+
addons:
5+
apt:
6+
packages:
7+
- libc6:i386
8+
- libstdc++6:i386
9+
10+
before_install:
11+
# Download gluac v20151107
12+
- wget https://github.com/garrysmodlua/gtravis/releases/download/v20151107/gluac.tar.xz
13+
- tar -xf gluac.tar.xz
14+
- export LD_LIBRARY_PATH=`pwd`/gluac${LD_LIBRARY_PATH:+:}${LD_LIBRARY_PATH:-}
15+
16+
# Set $PATH environment variable in order to execute gluac
17+
- export PATH=$PATH:`pwd`/gluac
18+
19+
- echo $PWD
20+
21+
script: find lua/ -iname '*.lua' -print0 | xargs -0 -- gluac -p --

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# MIDI Parser for Garry's Mod Lua
22

3+
[![Travis Build Status](https://img.shields.io/travis/garrysmodlua/GLua-midi-parser/master.svg?style=flat-square&maxAge=30)](https://travis-ci.org/garrysmodlua/GLua-midi-parser)
4+
35
**It is not perfect**! Use it for experimental purposes.
46
This is a GLua fork of [Lua_midiParser](https://github.com/FMS-Cat/Lua_midiParser).
57

0 commit comments

Comments
 (0)