comparison .cirrus.yml @ 30667:6f76a14e0140 v9.0.0668

patch 9.0.0668: CI on Mac M1 only uses clang Commit: https://github.com/vim/vim/commit/3ff71cda986b809e8ffeebee6804b50b3607df63 Author: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Wed Oct 5 20:41:01 2022 +0100 patch 9.0.0668: CI on Mac M1 only uses clang Problem: CI on Mac M1 only uses clang Solution: Also run with gcc. (closes https://github.com/vim/vim/issues/11263)
author Bram Moolenaar <Bram@vim.org>
date Wed, 05 Oct 2022 21:45:02 +0200
parents 4573f0cb7210
children 9549234f3f95
comparison
equal deleted inserted replaced
30666:5ba5a53cefbe 30667:6f76a14e0140
25 - pw useradd cirrus -m 25 - pw useradd cirrus -m
26 - chown -R cirrus:cirrus . 26 - chown -R cirrus:cirrus .
27 - sudo -u cirrus make test 27 - sudo -u cirrus make test
28 28
29 macos_task: 29 macos_task:
30 name: macOS m1 30 name: macOS (arm64 gcc)
31 macos_instance: 31 macos_instance:
32 image: ghcr.io/cirruslabs/macos-ventura-xcode:latest 32 image: ghcr.io/cirruslabs/macos-ventura-xcode:latest
33 timeout_in: 20m 33 timeout_in: 20m
34 install_script: 34 install_script:
35 - uname -a 35 - brew update
36 - brew install gettext libtool
37 build_script:
38 - NPROC=$(getconf _NPROCESSORS_ONLN)
39 - ./configure --with-features=${FEATURES}
40 - make -j${NPROC}
41 test_script:
42 - src/vim --version
43 - 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:
36 - brew update 51 - brew update
37 - brew install gettext libtool 52 - brew install gettext libtool
38 build_script: 53 build_script:
39 - NPROC=$(getconf _NPROCESSORS_ONLN) 54 - NPROC=$(getconf _NPROCESSORS_ONLN)
40 - ./configure --with-features=${FEATURES} 55 - ./configure --with-features=${FEATURES}