-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
.travis.yml
30 lines (30 loc) · 1.4 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
sudo: false
# Python is needed for integration tests.
language: python
python: 3.6
env:
global:
# Travis uses virtualenv by default and venv rejects to install pip,
# although it should do it (maybe Ubuntu's fault).
- USE_PYTHON_VENV=no
# GH_TOKEN=xxx
- secure: hvNcsGjw+KE8boWEZyfMzW81kIl9k7GJPQqL7YhQqD8uNPNJByOScJwQvCI7WsBJfT7nLWqAgBewIXKgSizOoSwTsNG4oRXpgMo+whbQ9rS9nYrhajKlZSRFWJ6cJl+dlHEC5uJB4O789LOpMHfXzdivxKDNeoie9UbGnbW6okgfNwxqDteZTph9DOobt4Nik+5RlBVbiqXQ1cCqzTIJLvO8sTB8ah3kmRYF0mgYuzasxngCslmFOnLzu/e1UDePC427+w93Dkn0L+xxMtxAlv0O3k2Gytcd8Z5aaH2rXhjbqN/hfP+ZC70pK8H9E1n+xWexItEKIc9mYJVknUO46FYua8De1wf3oEiAac8No8IHz16k56y014pFiaWVIIX11qlQtTFGrqmbOxPIroYSfpj3odYEe7Rt1TOWUmN4sk3R0qEpUoIJwAmAIOGpo7eWp0GJjG9R0JbByneXQJI/eLYL+r5aadq7YQwyRcd66BZSwMqzVexfy22l/fpPw7lKQ+7VN9iEBLm/Ueu//cEUJyarFexgOHgz1wIPC0SnVOun3q9E35YpWUiszRoGNZF5ynikkuSObtARwk2YmwHdzb8Q1kEVujtUYVhA83rbS1YwqciPJv37wz9J/dIVtIL4e2VDNZBI318EG9xehQkFi/0/YFruqKjHew0gIvrdHR4=
matrix:
- LUA_VERSION=luajit-2.0
- LUA_VERSION=luajit-2.1
# FIXME: Currently does not work, probably because hererocks does not build
# shared library for PUC Lua.
#- LUA_VERSION=lua-5.1
cache:
directories:
- .env
- $HOME/.cache/pip
install:
- script/bootstrap-full
- source .envrc
script:
- script/test
- script/test-integration
after_success:
- '[ "$LUA_VERSION" = "lua-5.1" ] && luacov-coveralls'
- script/deploy-docs