view .cirrus.yml @ 34574:74baeec0f24f v9.1.0185

patch 9.1.0185: 'wincolor' hl missing with 'rightleft', "below" virttext, 'nowrap' Commit: https://github.com/vim/vim/commit/f6272551bdae3f265b6948a4155b079c37fe110f Author: zeertzjq <zeertzjq@outlook.com> Date: Sun Mar 17 10:01:47 2024 +0100 patch 9.1.0185: 'wincolor' hl missing with 'rightleft', "below" virttext, 'nowrap' Problem: 'wincolor' highlight missing with 'rightleft', "below" virtual text and 'nowrap'. Solution: Handle 'rightleft' in draw_screen_line() (zeertzjq). closes: #14216 Signed-off-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Sun, 17 Mar 2024 10:15:05 +0100
parents 4cffda5da6f4
children
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
  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