summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorichizok <gclient.gaap@gmail.com>2021-12-11 17:34:19 +0000
committerBram Moolenaar <Bram@vim.org>2021-12-11 17:34:19 +0000
commit48c0196378a1fa408ebae4f578a62095d8a80c6f (patch)
treed0d695e7a090bba05ff63ea60755d8b1dbe50eca /.github/workflows
parent7b1463bca36d16e70afd6779e4fbb30761048c91 (diff)
downloadvim-git-8.2.3785.tar.gz
patch 8.2.3785: running CI on MacOS with gcc is not usefulv8.2.3785
Problem: Running CI on MacOS with gcc is not useful. Solution: Only use clang. (Ozaki Kiichi, closes #9326) Also build with normal features.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yml7
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 19952df17..14d9b1a7c 100644
--- 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"
;;