diff options
| author | dundargoc <gocdundar@gmail.com> | 2025-02-05 22:53:24 +0100 |
|---|---|---|
| committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2025-02-08 14:14:42 +0100 |
| commit | 818a2980db2cce6dd16c13ec7eb56a42fc812149 (patch) | |
| tree | 78aaec178f526423a2c1915e069717612c295a64 /.github/workflows | |
| parent | a9cdf76e3a142c78b2b5da58c428e15e31cb0a15 (diff) | |
| download | rneovim-818a2980db2cce6dd16c13ec7eb56a42fc812149.tar.gz rneovim-818a2980db2cce6dd16c13ec7eb56a42fc812149.tar.bz2 rneovim-818a2980db2cce6dd16c13ec7eb56a42fc812149.zip | |
ci(arm64): skip installing npm to prevent segmentation faults
Installing npm on linux arm64 causes intermittent segmentation faults
for unknown reasons.
Closes https://github.com/neovim/neovim/issues/32339.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/test.yml | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a366dea082..797f102879 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -139,10 +139,6 @@ jobs: echo "Install neovim RubyGem." gem install --no-document --bindir "$BIN_DIR" --user-install --pre neovim - echo "Install neovim npm package" - npm install -g neovim - npm link neovim - sudo cpanm -n Neovim::Ext || cat "$HOME/.cpanm/build.log" perl -W -e 'use Neovim::Ext; print $Neovim::Ext::VERSION' |