Skip to content

Commit 07bccd5

Browse files
committed
fix macosx build
1 parent cf3c2ce commit 07bccd5

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Build-Maxos
3939
if: matrix.target == 'osx-arm64' || matrix.target == 'osx-x64'
4040
run: |
41-
dotnet publish EmmyLua.LanguageServer -r osx-arm64 -c Release -o ${{ github.workspace }}/artifact/ --sc /p:DebugType=None
41+
dotnet publish EmmyLua.LanguageServer -r ${{ matrix.target }} -c Release -o ${{ github.workspace }}/artifact/ --sc /p:DebugType=None
4242
rm -rf ${{ github.workspace }}/artifact/EmmyLua.LanguageServer.dSYM
4343
- name: Upload
4444
uses: actions/upload-artifact@v3

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# EmmyLuaAnalyzer
22

3+
## Migrate
4+
5+
I plan to rewrite the language server in Rust. see: https://github.com/CppCXY/emmylua-analyzer-rust
6+
37
## Introduction
48

59
The EmmyLuaAnalyzer project is a static analyzer and language service for the Lua language implemented in C#. It mainly consists of two parts:
@@ -11,7 +15,6 @@ The EmmyLuaAnalyzer project is a static analyzer and language service for the Lu
1115
- Supports mainstream Lua versions, including Lua 5.1, Lua 5.2, Lua 5.3, Lua 5.4, LuaJIT.
1216
- Supports EmmyLua Doc comments and is compatible with the Doc format of Lua-Language-Server (abbreviated as LuaLs).
1317
- Supports all language service features (not all are supported yet, currently supports the main ones that will be used).
14-
- Formatting is not supported yet (EmmyLuaCodeStyle, which I also wrote, has its own independent language service).
1518

1619
## Documentation
1720

0 commit comments

Comments
 (0)