Skip to content

Commit 2e0820a

Browse files
committed
Update Travis files
1 parent 3a6e655 commit 2e0820a

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,11 @@ branches:
1616
before_install:
1717
- sudo apt-get update
1818
- bash .travis/setup_lua.sh
19-
- sudo luarocks install lunitx
2019
- sudo pip install cpp-coveralls
21-
- sudo luarocks install dkjson --deps-mode=none
2220
- sudo luarocks install luafilesystem --from=https://rocks.moonscript.org/dev
23-
- sudo luarocks install lua-path --deps-mode=none
2421
- sudo luarocks install luacov-coveralls
22+
- sudo luarocks install lunitx
23+
- sudo luarocks install dkjson --deps-mode=none
2524

2625
install:
2726
- sudo luarocks make rockspecs/lua-curl-scm-0.rockspec CFLAGS="-O2 -fPIC -ftest-coverage -fprofile-arcs" LIBFLAG="-shared --coverage"

.travis/setup_lua.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ else
5757
curl http://www.lua.org/ftp/lua-5.2.3.tar.gz | tar xz
5858
cd lua-5.2.3;
5959
elif [ "$LUA" == "lua5.3" ]; then
60-
curl http://www.lua.org/work/lua-5.3.0-beta.tar.gz | tar xz
61-
cd lua-5.3.0-beta;
60+
curl http://www.lua.org/ftp/lua-5.3.0.tar.gz | tar xz
61+
cd lua-5.3.0;
6262
fi
6363
sudo make $PLATFORM install;
6464
fi
@@ -97,5 +97,5 @@ elif [ "$LUA" == "lua5.1" ]; then
9797
elif [ "$LUA" == "lua5.2" ]; then
9898
rm -rf lua-5.2.3;
9999
elif [ "$LUA" == "lua5.3" ]; then
100-
rm -rf lua-5.3.0-beta;
100+
rm -rf lua-5.3.0;
101101
fi

0 commit comments

Comments
 (0)