diff options
author | ichizok <gclient.gaap@gmail.com> | 2021-12-11 17:34:19 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-12-11 17:34:19 +0000 |
commit | 48c0196378a1fa408ebae4f578a62095d8a80c6f (patch) | |
tree | d0d695e7a090bba05ff63ea60755d8b1dbe50eca /.github/workflows/ci.yml | |
parent | 7b1463bca36d16e70afd6779e4fbb30761048c91 (diff) | |
download | vim-git-48c0196378a1fa408ebae4f578a62095d8a80c6f.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/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 7 |
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" ;; |