generated from linrongbin16/ci-template.nvim
-
-
Notifications
You must be signed in to change notification settings - Fork 0
188 lines (188 loc) · 7.04 KB
/
ci.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
commits:
name: Commits
if: ${{ github.ref != 'refs/heads/main' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: JohnnyMorganz/stylua-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
version: latest
args: --config-path .stylua.toml ./lua ./spec
- name: Add _system.lua
if: ${{ github.ref != 'refs/heads/main' }}
run: |
echo "pwd"
echo $PWD
git clone --depth=1 https://github.com/neovim/neovim.git ~/.neovim
cp ~/.neovim/runtime/lua/vim/_system.lua ./lua/commons/_system.lua
sed -i 's/vim.uv/vim.uv or vim.loop/g' ./lua/commons/_system.lua
sed -i '1 i\---@diagnostic disable' ./lua/commons/_system.lua
- name: Add uri.lua
if: ${{ github.ref != 'refs/heads/main' }}
run: |
echo "pwd"
echo $PWD
cp ~/.neovim/runtime/lua/vim/uri.lua ./lua/commons/_uri.lua
sed -i '1 i\---@diagnostic disable' ./lua/commons/_uri.lua
- name: Add async.lua
if: ${{ github.ref != 'refs/heads/main' }}
run: |
echo "pwd"
echo $PWD
git clone --depth=1 https://github.com/lewis6991/async.nvim.git ~/.async
cp ~/.async/lua/async.lua ./lua/commons/async.lua
sed -i '1 i\---@diagnostic disable: luadoc-miss-module-name, undefined-doc-name' ./lua/commons/async.lua
- name: Add color.hsl.lua
if: ${{ github.ref != 'refs/heads/main' }}
run: |
echo "pwd"
echo $PWD
curl -k -L http://sputnik.freewisdom.org/files/colors-8.05.26.tar.gz -o ~/.colors.tar.gz
tar zxf ~/.colors.tar.gz
echo 'ls -lh'
ls -lh
rm -rf ./lua/commons/color/hsl.lua
cp -rf ./colors-8.05.26/lua/colors.lua ./lua/commons/color/hsl.lua
rm -rf ./colors-8.05.26
sed -i '1 i\---@diagnostic disable' ./lua/commons/color/hsl.lua
- name: Add xml2lua.lua
if: ${{ github.ref != 'refs/heads/main' }}
run: |
echo "pwd"
echo $PWD
git clone --depth=1 https://github.com/manoelcampos/xml2lua.git ~/.xml2lua
cp ~/.xml2lua/xml2lua.lua ./lua/commons/xml2lua.lua
cp ~/.xml2lua/XmlParser.lua ./lua/commons/XmlParser.lua
echo 'ls -lh'
ls -lh
rm -rf ./lua/commons/xmlhandler
mkdir -p ./lua/commons/xmlhandler
cp -f ~/.xml2lua/xmlhandler/dom.lua ./lua/commons/xmlhandler/dom.lua
cp -f ~/.xml2lua/xmlhandler/tree.lua ./lua/commons/xmlhandler/tree.lua
cp -f ~/.xml2lua/xmlhandler/print.lua ./lua/commons/xmlhandler/print.lua
sed -i '1 i\---@diagnostic disable: luadoc-miss-module-name, param-type-mismatch, discard-returns, undefined-global' ./lua/commons/xmlhandler/dom.lua
sed -i '1 i\---@diagnostic disable: luadoc-miss-module-name, param-type-mismatch, discard-returns, undefined-global' ./lua/commons/xmlhandler/tree.lua
sed -i '1 i\---@diagnostic disable: luadoc-miss-module-name, param-type-mismatch, discard-returns, undefined-global' ./lua/commons/xmlhandler/print.lua
sed -i '1 i\---@diagnostic disable: luadoc-miss-module-name, param-type-mismatch, discard-returns, undefined-global' ./lua/commons/xml2lua.lua
sed -i '1 i\---@diagnostic disable: luadoc-miss-module-name, param-type-mismatch, discard-returns, undefined-global' ./lua/commons/XmlParser.lua
sed -i 's/require("XmlParser/require("commons.XmlParser/g' ./lua/commons/xml2lua.lua
sed -i 's/require("xmlhandler/require("commons.xmlhandler/g' ./lua/commons/xml2lua.lua
sed -i 's/require("xmlhandler/require("commons.xmlhandler/g' ./lua/commons/XmlParser.lua
- uses: cargo-bins/cargo-binstall@main
- name: Selene
run: |
cargo binstall --no-confirm selene
selene --config selene.toml ./lua
- uses: stevearc/nvim-typecheck-action@v2
with:
path: lua
configpath: ".luarc.json"
- uses: stefanzweifel/git-auto-commit-action@v5
if: ${{ github.ref != 'refs/heads/main' }}
with:
commit_message: "chore(pr): auto-commit"
push_options: "--force"
unit_test:
name: Unxi Test
needs:
- lint
strategy:
matrix:
include:
- nvim_version: stable
os: ubuntu-latest
- nvim_version: nightly
os: ubuntu-latest
- nvim_version: v0.9.0
os: ubuntu-latest
- nvim_version: stable
os: macos-latest
- nvim_version: nightly
os: macos-latest
- nvim_version: v0.9.0
os: macos-latest
- nvim_version: stable
os: windows-latest
- nvim_version: nightly
os: windows-latest
- nvim_version: v0.9.0
os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: rhysd/action-setup-vim@v1
id: vim
with:
neovim: true
version: ${{ matrix.nvim_version }}
- uses: ilammy/msvc-dev-cmd@v1
- uses: leafo/gh-actions-lua@v10
with:
luaVersion: "luajit-2.1.0-beta3"
if: ${{ !startsWith(matrix.os, 'windows') }}
- uses: leafo/gh-actions-luarocks@v4
if: ${{ !startsWith(matrix.os, 'windows') }}
- uses: notomo/action-setup-nvim-lua@v1
if: ${{ startsWith(matrix.os, 'windows') }}
- name: Run Test Cases
run: |
luarocks install luacov
luarocks --lua-version=5.1 install vusted
vusted --coverage ./spec
- name: Check Coverage Reports
if: ${{ !startsWith(matrix.os, 'windows') }}
run: |
echo "ls ."
ls -l .
echo "run luacov"
luacov
echo "ls ."
ls -l .
echo "cat ./luacov.report.out"
cat ./luacov.report.out
- uses: codecov/codecov-action@v4
if: ${{ !startsWith(matrix.os, 'windows') }}
with:
files: luacov.report.out
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
release:
name: Release
if: ${{ github.ref == 'refs/heads/main' }}
needs:
- unit_test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: googleapis/release-please-action@v4
id: release
- uses: nvim-neorocks/luarocks-tag-release@v5
if: ${{ steps.release.outputs.release_created }}
env:
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }}
with:
version: ${{ steps.release.outputs.tag_name }}
labels: |
neovim
vim