diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-01-13 17:59:50 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-01-13 17:59:50 +0800 |
commit | 4be30dd4b57ac431d363dc524f375c2ccb514129 (patch) | |
tree | 5dba8ef9a73ca39967720e55363797dfb8188407 | |
parent | e8c6162442425cae797fa406ff8f4b96bf44af54 (diff) | |
download | lua-language-server-4be30dd4b57ac431d363dc524f375c2ccb514129.zip |
remove workflow for arm64
-rw-r--r-- | .github/workflows/build.yml | 1 | ||||
-rw-r--r-- | make.lua | 1 |
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 } @@ -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 |