blob: bb546776be9d5b34916632fa563c548b61835696 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
stages:
- test5.3
- test5.4
test5.3:
image: alpine:3.12.1
stage: test5.3
before_script:
- apk add lua5.3 luarocks5.3 make
- luarocks-5.3 install fennel
script:
- make test
test5.4:
image: alpine:3.12.1
stage: test5.4
before_script:
- apk add lua5.4 luarocks5.4 make
- luarocks-5.4 install fennel
script:
- make test
|