]> Sergey Matveev's repositories - vim-lsp.git/commitdiff
Use an older version of the rust analyzer in the CI tests
authorYegappan Lakshmanan <yegappan@yahoo.com>
Sat, 21 Sep 2024 05:11:14 +0000 (22:11 -0700)
committerYegappan Lakshmanan <yegappan@yahoo.com>
Sat, 21 Sep 2024 05:11:14 +0000 (22:11 -0700)
.github/workflows/unitests.yml

index 52c7667fe872a320a46ca2e4efdbcb5a654daabc..eabc236b78e58f4bc399e632ed5b04b2031ddd71 100644 (file)
@@ -27,7 +27,8 @@ jobs:
           # install the rust language server
           sudo apt install -y cargo rust-src
           mkdir -p ~/.local/bin
-          curl -L https://github.com/rust-lang/rust-analyzer/releases/latest/download/rust-analyzer-x86_64-unknown-linux-gnu.gz | gunzip -c - > ~/.local/bin/rust-analyzer
+          # Use version v0.3.2011 as the later versions fail the tests
+          curl -L https://github.com/rust-lang/rust-analyzer/releases/download/2024-06-24/rust-analyzer-x86_64-unknown-linux-gnu.gz | gunzip -c - > ~/.local/bin/rust-analyzer
           chmod +x ~/.local/bin/rust-analyzer
       - name: Setup Vim
         uses: rhysd/action-setup-vim@v1