Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generate Lua LSP compatible API docs #1999

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
ci(tooling): Avoid needing yet more API doc tooling for testing runs
  • Loading branch information
alerque committed Feb 14, 2024
commit 60e18356bb44f11e257e50a02f57480a671b46ed
13 changes: 12 additions & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 42,18 @@ task:
- ./bootstrap.sh
configure_script: |
./configure MAKE=gmake \
--enable-developer LDOC=false LUAROCKS=false LUACHECK=false BUSTED=false DELTA=cat PDFINFO=false NIX=false NPM=false DOCKER=false \
--enable-developer \
BUSTED=false \
DELTA=cat \
DOCKER=false \
LDOC=false \
LSP=false \
LUACHECK=false \
LUAROCKS=false \
NIX=false \
NPM=false \
PANDOC=false \
PDFINFO=false \
--disable-font-variations \
--with-system-lua-sources \
--with-system-luarocks \
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 60,13 @@ jobs:
run: |
./bootstrap.sh
./configure \
--enable-developer LDOC=false LUACHECK=false NIX=false DELTA=cat \
--enable-developer \
DELTA=cat \
LDOC=false \
LSP=false \
LUACHECK=false \
NIX=false \
PANDOC=false \
--disable-font-variations \
--without-manual
- name: Make
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 71,13 @@ jobs:
./bootstrap.sh
./configure \
${{ matrix.luaVersion[1] }} \
--enable-developer LDOC=false LUACHECK=false NIX=false DELTA=cat \
--enable-developer \
DELTA=cat \
LDOC=false \
LSP=false \
PANDOC=false \
LUACHECK=false \
NIX=false \
--disable-font-variations \
--with${{ !startsWith(matrix.luaVersion[0], 'luajit') && 'out' || '' }}-luajit \
--without-system-luarocks \
Expand Down
Loading