diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2023-07-21 11:17:29 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-21 11:17:29 +0800 |
commit | 8aa391239f1e0df0f3f59ecbba9da063b5396e70 (patch) | |
tree | 08589a68bf0c78c5667ff274f03e505c8187a52f | |
parent | 297ac3aabb38c22648f501038e1e66b6c8f9f936 (diff) | |
parent | 5b31b2fb7955cd2a9ef39f1c05ad5b24c0e19430 (diff) | |
download | lua-language-server-8aa391239f1e0df0f3f59ecbba9da063b5396e70.zip |
Merge pull request #2209 from ericwq/master
- add musl version build dependency: linux-headers.
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7f5b3004..66640e50 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 } @@ -60,7 +60,7 @@ jobs: if: ${{ matrix.target == 'linux' && matrix.libc == 'musl' }} run: | apk update - apk add git ninja bash build-base nodejs + apk add git ninja bash build-base nodejs linux-headers - uses: actions/checkout@v3 with: |