# HG changeset patch # User Bram Moolenaar # Date 1639244703 -3600 # Node ID 3772e454a7fb3b38217d81bb969a424e2a459409 # Parent f08a4040f26de8fb395b64bb6cb18340a6a598db patch 8.2.3785: running CI on MacOS with gcc is not useful Commit: https://github.com/vim/vim/commit/48c0196378a1fa408ebae4f578a62095d8a80c6f Author: ichizok Date: Sat Dec 11 17:34:19 2021 +0000 patch 8.2.3785: running CI on MacOS with gcc is not useful Problem: Running CI on MacOS with gcc is not useful. Solution: Only use clang. (Ozaki Kiichi, closes https://github.com/vim/vim/issues/9326) Also build with normal features. diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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" ;; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -754,6 +754,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3785, +/**/ 3784, /**/ 3783,