Skip to content

Commit b213703

Browse files
pheiduckbrammool
authored andcommitted
patch 9.0.0264: CI still runs on Ubuntu 18.04
Problem: CI still runs on Ubuntu 18.04. Solution: Run CI on Ubuntu 20.04. (closes #10582)
1 parent 6d4b2f5 commit b213703

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414

1515
jobs:
1616
linux:
17-
runs-on: ubuntu-18.04
17+
runs-on: ubuntu-20.04
1818

1919
env:
2020
CC: ${{ matrix.compiler }}
@@ -167,11 +167,6 @@ jobs:
167167
# Use llvm-cov instead of gcov when compiler is clang.
168168
ln -fs /usr/bin/llvm-cov ${HOME}/bin/gcov
169169
fi
170-
# Setup lua5.3 manually since its package doesn't provide alternative.
171-
# https://bugs.launchpad.net/ubuntu/+source/lua5.3/+bug/1707212
172-
if [[ ${CONFOPT} =~ luainterp ]]; then
173-
sudo update-alternatives --install /usr/bin/lua lua /usr/bin/lua5.3 10
174-
fi
175170
sudo sysctl -w net.ipv6.conf.lo.disable_ipv6=0
176171
sudo usermod -a -G audio "${USER}"
177172
sudo bash ci/setup-xvfb.sh
@@ -268,7 +263,7 @@ jobs:
268263
done
269264
270265
# coveralls:
271-
# runs-on: ubuntu-18.04
266+
# runs-on: ubuntu-20.04
272267
#
273268
# needs: linux
274269
# if: always() && github.event_name != 'pull_request'

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -731,6 +731,8 @@ static char *(features[]) =
731731

732732
static int included_patches[] =
733733
{ /* Add new patch number below this line */
734+
/**/
735+
264,
734736
/**/
735737
263,
736738
/**/

0 commit comments

Comments
 (0)