File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -120,6 +120,36 @@ matrix:
120
120
# - bash <(curl -s https://codecov.io/bash)
121
121
# - deactivate
122
122
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
+
123
153
- name : " build lua w codecov on bionic arm64"
124
154
osx : linux
125
155
dist : bionic
You can’t perform that action at this time.
0 commit comments