]> granicus.if.org Git - vim/commitdiff
patch 8.2.3785: running CI on MacOS with gcc is not useful v8.2.3785
authorichizok <gclient.gaap@gmail.com>
Sat, 11 Dec 2021 17:34:19 +0000 (17:34 +0000)
committerBram Moolenaar <Bram@vim.org>
Sat, 11 Dec 2021 17:34:19 +0000 (17:34 +0000)
Problem:    Running CI on MacOS with gcc is not useful.
Solution:   Only use clang. (Ozaki Kiichi, closes #9326)  Also build with
            normal features.

.github/workflows/ci.yml
src/version.c

index 19952df178168be66a54769c92ddf3c9b22e619a..14d9b1a7c14c2fb16609d5e7f727ff1d29fc6d7e 100644 (file)
@@ -255,7 +255,7 @@ jobs:
     runs-on: macos-latest
 
     env:
-      CC: ${{ matrix.compiler }}
+      CC: clang
       TEST: test
       SRCDIR: ./src
       LEAK_CFLAGS: -DEXITFREE
@@ -264,8 +264,7 @@ jobs:
     strategy:
       fail-fast: false
       matrix:
-        features: [tiny, huge]
-        compiler: [clang, gcc]
+        features: [tiny, normal, huge]
 
     steps:
       - uses: actions/checkout@v2
@@ -286,6 +285,8 @@ jobs:
             echo "TEST=testtiny"
             echo "CONFOPT=--disable-gui"
             ;;
+          normal)
+            ;;
           huge)
             echo "CONFOPT=--enable-perlinterp --enable-python3interp --enable-rubyinterp --enable-luainterp --enable-tclinterp"
             ;;
index ed491a8e3e00672a4bdd7860400aa4a0359491cc..3ac31777ed6d811ee3ff16fda388366602186598 100644 (file)
@@ -753,6 +753,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    3785,
 /**/
     3784,
 /**/