diff options
author | Philip H <47042125+pheiduck@users.noreply.github.com> | 2022-08-26 15:48:55 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-08-26 15:48:55 +0100 |
commit | c361842f1479a7f7f3e65bfb0e188f2e5d38336e (patch) | |
tree | dbda6cd4bc4d83996a6c3d715b0e970f8fc464be | |
parent | 93f72cc119c796f1ccb75468ef9e446cbfb41e9b (diff) | |
download | vim-git-c361842f1479a7f7f3e65bfb0e188f2e5d38336e.tar.gz |
patch 9.0.0277: Coverity CI: update-alternatives not needed with Ubuntu 20.04v9.0.0277
Problem: Coverity CI: update-alternatives not needed with Ubuntu 20.04.
Solution: Remove update-alternatives for Lua. (closes #10987)
-rw-r--r-- | .github/workflows/coverity.yml | 6 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 2 insertions, 6 deletions
diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml index 566ab5b2f..9771ae49d 100644 --- a/.github/workflows/coverity.yml +++ b/.github/workflows/coverity.yml @@ -50,12 +50,6 @@ jobs: echo "CONFOPT=--enable-perlinterp --enable-pythoninterp --enable-python3interp --enable-rubyinterp --enable-luainterp --enable-tclinterp" ) >> $GITHUB_ENV - - name: Set up system - run: | - # Setup lua5.3 manually since its package doesn't provide alternative. - # https://bugs.launchpad.net/ubuntu/+source/lua5.3/+bug/1707212 - sudo update-alternatives --install /usr/bin/lua lua /usr/bin/lua5.3 10 - - name: Configure run: | ./configure --with-features=huge ${CONFOPT} --enable-fail-if-missing diff --git a/src/version.c b/src/version.c index a0a721046..1fd798b8f 100644 --- a/src/version.c +++ b/src/version.c @@ -724,6 +724,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 277, +/**/ 276, /**/ 275, |