Skip to content

Commit d459020

Browse files
ichizokbrammool
authored andcommitted
patch 9.0.0676: CI on Mac M1 with gcc actually uses clang
Problem: CI on Mac M1 with gcc actually uses clang. Solution: Remove the gcc task. (Ozaki Kiichi, closes #11297)
1 parent 851907a commit d459020

2 files changed

Lines changed: 6 additions & 17 deletions

File tree

.cirrus.yml

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,12 @@ freebsd_task:
2727
- sudo -u cirrus make test
2828

2929
macos_task:
30-
name: macOS (arm64 gcc)
30+
name: macOS m1
3131
macos_instance:
3232
image: ghcr.io/cirruslabs/macos-ventura-xcode:latest
33+
env:
34+
# only run with clang, gcc is not real, it is a link to clang
35+
CC: clang
3336
timeout_in: 20m
3437
install_script:
3538
- brew update
@@ -41,19 +44,3 @@ macos_task:
4144
test_script:
4245
- src/vim --version
4346
- make test
44-
45-
macos_task:
46-
name: macOS (arm64 clang)
47-
macos_instance:
48-
image: ghcr.io/cirruslabs/macos-ventura-xcode:latest
49-
timeout_in: 20m
50-
install_script:
51-
- brew update
52-
- brew install gettext libtool
53-
build_script:
54-
- NPROC=$(getconf _NPROCESSORS_ONLN)
55-
- ./configure --with-features=${FEATURES}
56-
- make -j${NPROC} CC=clang
57-
test_script:
58-
- src/vim --version
59-
- make CC=clang test

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -699,6 +699,8 @@ static char *(features[]) =
699699

700700
static int included_patches[] =
701701
{ /* Add new patch number below this line */
702+
/**/
703+
676,
702704
/**/
703705
675,
704706
/**/

0 commit comments

Comments
 (0)