summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-10-15 10:54:27 +0100
committerBram Moolenaar <Bram@vim.org>2022-10-15 10:54:27 +0100
commitd988ef3a555df2c686899a74393ed53b3186370c (patch)
tree326f56e14c7b036f8126910a1a9f6f97d12773b4
parenta79b35b5781ae770334cec781d17fec3875f8108 (diff)
patch 9.0.0755: huge build on macos always fails on CIv9.0.0755
Problem: Huge build on macos always fails on CI. Solution: Temporarily disable the perl interface.
-rw-r--r--.github/workflows/ci.yml3
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index d92f6df21d..2d0ec4488e 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -317,7 +317,8 @@ jobs:
normal)
;;
huge)
- echo "CONFOPT=--enable-perlinterp --enable-python3interp --enable-rubyinterp --enable-luainterp --enable-tclinterp"
+ # FIXME: --enable-perlinterp temporarily removed, it always fails
+ echo "CONFOPT=--enable-python3interp --enable-rubyinterp --enable-luainterp --enable-tclinterp"
;;
esac
) >> $GITHUB_ENV
diff --git a/src/version.c b/src/version.c
index 90fff9a0fa..a917dfdf2d 100644
--- a/src/version.c
+++ b/src/version.c
@@ -696,6 +696,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 755,
+/**/
754,
/**/
753,