Skip to content

Commit 6b4c78e

Browse files
committed
last touch
1 parent 87b4c3d commit 6b4c78e

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.travis.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,36 @@ matrix:
120120
# - bash <(curl -s https://codecov.io/bash)
121121
# - deactivate
122122

123+
- name: "build lua w codecov on bionic arm64"
124+
osx: linux
125+
dist: bionic
126+
sudo: false
127+
arch: amd64
128+
language: c
129+
env:
130+
global:
131+
- LUAROCKS=2.3.0
132+
matrix:
133+
- LUA=lua5.1
134+
- LUA=lua5.2
135+
- LUA=lua5.3
136+
- LUA=luajit # latest stable version (2.0.4)
137+
- LUA=luajit2.0 # current head of 2.0 branch
138+
- LUA=luajit2.1 # current head of 2.1 branch
139+
before_install:
140+
- source .travis/setenv_lua.sh
141+
- pip install --user cpp-coveralls
142+
- luarocks install Lua-cURL --server=https://luarocks.org/dev
143+
- luarocks install luacov-coveralls --server=https://luarocks.org/dev
144+
- luarocks install lunitx
145+
install:
146+
- luarocks make rockspecs/foo-scm-0.rockspec CFLAGS="-O2 -fPIC -ftest-coverage -fprofile-arcs" LIBFLAG="-shared --coverage"
147+
script:
148+
- lua -lluacov app/awesome-tests.lua
149+
after_success:
150+
- bash <(curl -s https://codecov.io/bash)
151+
- deactivate
152+
123153
- name: "build lua w codecov on bionic arm64"
124154
osx: linux
125155
dist: bionic

0 commit comments

Comments
 (0)