diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2023-07-19 16:47:39 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2023-07-19 16:47:39 +0800 |
commit | 2431b557a125a609bdd8ccbf9e072b8cba4661e6 (patch) | |
tree | f9eb3e3cce29536243b125455bf0e26e3cf8aeb7 /.github/workflows | |
parent | a8ea07192788c26f13baf4391c84a2d703b56812 (diff) | |
download | lua-language-server-2431b557a125a609bdd8ccbf9e072b8cba4661e6.zip |
disable building for `musl`
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c1dbfe2e..7f5b3004 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,7 @@ jobs: fail-fast: false matrix: include: - - { os: ubuntu-22.04, target: linux, platform: linux-x64, container: 'alpine:latest', libc: musl } + # - { os: ubuntu-22.04, target: linux, platform: linux-x64, container: 'alpine:latest', libc: musl } - { os: ubuntu-20.04, target: linux, platform: linux-x64, container: 'ubuntu:18.04' } - { os: ubuntu-20.04, target: linux, platform: linux-arm64, container: 'ubuntu:18.04' } - { os: macos-11, target: darwin, platform: darwin-x64 } |