summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2022-01-13 17:59:50 +0800
committer最萌小汐 <sumneko@hotmail.com>2022-01-13 17:59:50 +0800
commit4be30dd4b57ac431d363dc524f375c2ccb514129 (patch)
tree5dba8ef9a73ca39967720e55363797dfb8188407
parente8c6162442425cae797fa406ff8f4b96bf44af54 (diff)
downloadlua-language-server-4be30dd4b57ac431d363dc524f375c2ccb514129.zip
remove workflow for arm64
-rw-r--r--.github/workflows/build.yml1
-rw-r--r--make.lua1
2 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 19e73495..31c8d7f8 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -21,7 +21,6 @@ jobs:
matrix:
include:
- { os: ubuntu-18.04, target: linux, platform: linux-x64 }
- - { os: ubuntu-18.04, target: linux, platform: linux-arm64 }
- { os: macos-11, target: darwin, platform: darwin-x64 }
- { os: macos-11, target: darwin, platform: darwin-arm64 }
- { os: windows-latest, target: windows, platform: win32-ia32 }
diff --git a/make.lua b/make.lua
index b3b9400e..25e9d38d 100644
--- a/make.lua
+++ b/make.lua
@@ -28,6 +28,7 @@ elseif platform.OS == 'Linux' then
if lm.platform == nil then
elseif lm.platform == "linux-x64" then
elseif lm.platform == "linux-arm64" then
+ -- TODO: not implement
lm.compiler = "clang"
lm.target = "arm64-pc-linux-gnu"
else