Skip to content

Commit d42a118

Browse files
updated travis
1 parent 33f2e44 commit d42a118

3 files changed

Lines changed: 45 additions & 26 deletions

File tree

.travis.yaml

Lines changed: 0 additions & 22 deletions
This file was deleted.

.travis.yml

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
language: python
2+
3+
os:
4+
- linux
5+
6+
addons:
7+
apt:
8+
sources:
9+
- ubuntu-toolchain-r-test
10+
packages:
11+
- g++-7
12+
13+
env:
14+
- CXX=g++-7 LUA="lua=5.1"
15+
- CXX=g++-7 LUA="lua=5.2"
16+
- CXX=g++-7 LUA="lua=5.3"
17+
- CXX=g++-7 LUA="lua=5.4"
18+
- CXX=g++-7 LUA="luajit=2.0"
19+
- CXX=g++-7 LUA="luajit=2.1"
20+
21+
jobs:
22+
include:
23+
- name: "Python 3.7.4 on macOS"
24+
os: osx
25+
osx_image: xcode11.2 # Python 3.7.4 running on macOS 10.14.4
26+
language: shell # 'language: python' is an error on Travis CI macOS
27+
env: LUA="lua=5.1"
28+
- name: "Python 3.7.4 on macOS"
29+
os: osx
30+
osx_image: xcode11.2 # Python 3.7.4 running on macOS 10.14.4
31+
language: shell # 'language: python' is an error on Travis CI macOS
32+
env: LUA="lua=5.4"
33+
34+
before_install:
35+
- pip install hererocks
36+
- hererocks lua_install -r^ --$LUA
37+
- export PATH=$PATH:$PWD/lua_install/bin # Add directory with all installed binaries to PATH
38+
- luarocks install lua-cjson2
39+
40+
install:
41+
- luarocks make
42+
- luarocks install busted
43+
44+
script:
45+
- busted --verbose

spec/compile_spec.lua

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,6 @@ local files = {
2525
"numbers.json",
2626
"random.json",
2727
"repeat.json",
28-
"twitter_api_compact_response.json",
29-
"twitter_api_response.json",
30-
"twitterescaped.json",
31-
"twitter.json",
3228
"twitter_timeline.json",
3329
"update-center.json",
3430
"small/adversarial.json",

0 commit comments

Comments
 (0)