comparison .github/workflows/coverity.yml @ 29877:032cc5280408 v9.0.0277

patch 9.0.0277: Coverity CI: update-alternatives not needed with Ubuntu 20.04 Commit: https://github.com/vim/vim/commit/c361842f1479a7f7f3e65bfb0e188f2e5d38336e Author: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Fri Aug 26 15:48:55 2022 +0100 patch 9.0.0277: Coverity CI: update-alternatives not needed with Ubuntu 20.04 Problem: Coverity CI: update-alternatives not needed with Ubuntu 20.04. Solution: Remove update-alternatives for Lua. (closes https://github.com/vim/vim/issues/10987)
author Bram Moolenaar <Bram@vim.org>
date Fri, 26 Aug 2022 17:00:04 +0200
parents a0a446bc3aea
children 0c52f8114e16
comparison
equal deleted inserted replaced
29876:d894d6b0a3b3 29877:032cc5280408
48 ( 48 (
49 echo "NPROC=$(getconf _NPROCESSORS_ONLN)" 49 echo "NPROC=$(getconf _NPROCESSORS_ONLN)"
50 echo "CONFOPT=--enable-perlinterp --enable-pythoninterp --enable-python3interp --enable-rubyinterp --enable-luainterp --enable-tclinterp" 50 echo "CONFOPT=--enable-perlinterp --enable-pythoninterp --enable-python3interp --enable-rubyinterp --enable-luainterp --enable-tclinterp"
51 ) >> $GITHUB_ENV 51 ) >> $GITHUB_ENV
52 52
53 - name: Set up system
54 run: |
55 # Setup lua5.3 manually since its package doesn't provide alternative.
56 # https://bugs.launchpad.net/ubuntu/+source/lua5.3/+bug/1707212
57 sudo update-alternatives --install /usr/bin/lua lua /usr/bin/lua5.3 10
58
59 - name: Configure 53 - name: Configure
60 run: | 54 run: |
61 ./configure --with-features=huge ${CONFOPT} --enable-fail-if-missing 55 ./configure --with-features=huge ${CONFOPT} --enable-fail-if-missing
62 # Append various warning flags to CFLAGS. 56 # Append various warning flags to CFLAGS.
63 sed -i -f ci/config.mk.sed src/auto/config.mk 57 sed -i -f ci/config.mk.sed src/auto/config.mk