changeset 30841:9221f532df4b v9.0.0755

patch 9.0.0755: huge build on macos always fails on CI Commit: https://github.com/vim/vim/commit/d988ef3a555df2c686899a74393ed53b3186370c Author: Bram Moolenaar <Bram@vim.org> Date: Sat Oct 15 10:54:27 2022 +0100 patch 9.0.0755: huge build on macos always fails on CI Problem: Huge build on macos always fails on CI. Solution: Temporarily disable the perl interface.
author Bram Moolenaar <Bram@vim.org>
date Sat, 15 Oct 2022 12:00:04 +0200
parents a61b09c33ed7
children dbe6a8d245ed
files .github/workflows/ci.yml src/version.c
diffstat 2 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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,