Mercurial > vim
view .cirrus.yml @ 33253:3bc84e3fd05c
runtime(doc): documentation updates
Commit: https://github.com/vim/vim/commit/596ad66d1ddb742ef349e98eb06b8e4052f68f51
Author: Christian Brabandt <cb@256bit.org>
Date: Wed Aug 16 00:11:09 2023 +0200
runtime(doc): documentation updates
This is a collection of various improvements to the help pages
closes #12790
Co-authored-by: Houl <anwoku@yahoo.de>
Co-authored-by: Doug Kearns <dougkearns@gmail.com>
Co-authored-by: Adri Verhoef <a3@a3.xs4all.nl>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Mon, 11 Sep 2023 20:30:03 +0200 |
parents | 6c1d29d45734 |
children | 267308bfae50 |
line wrap: on
line source
env: CIRRUS_CLONE_DEPTH: 3 FEATURES: huge freebsd_task: name: FreeBSD matrix: - name: FreeBSD 14.0 freebsd_instance: image_family: freebsd-14-0 - name: FreeBSD 13.1 freebsd_instance: image_family: freebsd-13-1 timeout_in: 20m install_script: - pkg install -y gettext build_script: - NPROC=$(getconf _NPROCESSORS_ONLN) - ./configure --with-features=${FEATURES} - make -j${NPROC} test_script: - src/vim --version # run tests as user "cirrus" instead of root - pw useradd cirrus -m - chown -R cirrus:cirrus . - sudo -u cirrus make test macos_task: name: macOS m1 macos_instance: image: ghcr.io/cirruslabs/macos-ventura-xcode:latest env: # only run with clang, gcc is not real, it is a link to clang CC: clang timeout_in: 20m install_script: - brew update - brew install gettext libtool diffutils build_script: - NPROC=$(getconf _NPROCESSORS_ONLN) - ./configure --with-features=${FEATURES} - make -j${NPROC} test_script: - src/vim --version - make test