From 169e182080f48ee8c2e926834f7c5704790faa2c Mon Sep 17 00:00:00 2001 From: Lukas Reineke Date: Tue, 29 Aug 2023 23:33:41 +0900 Subject: [PATCH] fixup! TEMP --- .github/workflows/pr_check.yml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pr_check.yml b/.github/workflows/pr_check.yml index 5f1e9e3d..79b38d8a 100644 --- a/.github/workflows/pr_check.yml +++ b/.github/workflows/pr_check.yml @@ -59,11 +59,11 @@ jobs: with: path: _neovim key: ${{ runner.os }}-${{ matrix.rev }}-${{ hashFiles('todays-date') }} - - name: Restore cache for lua LS - uses: actions/cache@v3 - with: - path: _lua-ls - key: ${{ runner.os }}-${{ matrix.rev }}-${{ hashFiles('todays-date') }} + # - name: Restore cache for lua LS + # uses: actions/cache@v3 + # with: + # path: _lua-ls + # key: ${{ runner.os }}-${{ matrix.rev }}-${{ hashFiles('todays-date') }} - name: Prepare run: | test -d _neovim || { @@ -72,7 +72,11 @@ jobs: } test -d _lua-ls || { mkdir -p _lua-ls - curl -sL "https://github.com/LuaLS/lua-language-server/releases/download/3.7.0/lua-language-server-3.7.0-linux-x64.tar.gz" | tar xzf - --strip-components=1 -C "${PWD}/_lua-ls" + # curl -sL "https://github.com/LuaLS/lua-language-server/releases/download/3.7.0/lua-language-server-3.7.0-linux-x64.tar.gz" | tar xzf - --strip-components=1 -C "${PWD}/_lua-ls" + sudo apt-get update + sudo apt-get install -y ninja-build + git clone --depth 1 https://github.com/LuaLS/lua-language-server _lua-ls + cd _lua-ls && ./make.sh } - name: Run check