-
Notifications
You must be signed in to change notification settings - Fork 13
77 lines (65 loc) · 1.9 KB
/
build.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: "Build"
concurrency:
# for PR's cancel the running task, if another commit is pushed
group: ${{ github.workflow }} ${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
on:
# build on PR and push-to-main. This works for short-lived branches, and saves
# CPU cycles on duplicated tests.
# For long-lived branches that diverge, you'll want to run on all pushes, not
# just on push-to-main.
pull_request: {}
push:
branches:
- master
jobs:
test:
strategy:
fail-fast: false
matrix:
os: ['ubuntu-20.04', 'macos-11.0']
luaVersion:
- "5.1"
- "5.2"
- "5.3"
- "5.4"
- "luajit"
- "luajit-openresty"
include:
- os: "macos-latest"
luaVersion: "5.4"
- os: "windows-latest"
luaVersion: "luajit"
- os: "windows-latest"
toolchain: "msvc"
luaVersion: "5.4"
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@master
- name: Setup MSVC
if: ${{ matrix.toolchain == 'msvc' }}
uses: ilammy/msvc-dev-cmd@v1
- uses: leafo/gh-actions-lua@master
with:
luaVersion: ${{ matrix.luaVersion }}
- uses: hishamhm/gh-actions-luarocks@master
with:
luarocksVersion: "3.11.0"
- name: dependencies
run: |
luarocks install busted
luarocks config
luarocks show luafilesystem
dir C:\Users\runneradmin\AppData\Roaming\luarocks\lib\lua\5.4\lfs.dll
lua -e "print(require'lfs')"
luarocks make
- name: test
run: |
busted --Xoutput "--color"
# - name: Report test coverage
# if: success()
# continue-on-error: true
# run: luacov-coveralls
# env:
# COVERALLS_REPO_TOKEN: ${{ github.token }}