view .cirrus.yml @ 35489:adc20a495db8 v9.1.0511

patch 9.1.0511: CursorMovedC triggered wrongly with setcmdpos() Commit: https://github.com/vim/vim/commit/bc6f96708e3678dbb27ec4192d87cf94a15d4e9a Author: zeertzjq <zeertzjq@outlook.com> Date: Fri Jun 21 07:51:40 2024 +0200 patch 9.1.0511: CursorMovedC triggered wrongly with setcmdpos() Problem: CursorMovedC triggered wrongly with setcmdpos() (after v9.1.0507) Solution: Remove the premature triggering. Also don't trigger when cursor didn't move. (zeertzjq) closes: #15064 Signed-off-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Fri, 21 Jun 2024 08:00:06 +0200
parents 956a5fa10aaa
children 8eb6c3f6232f
line wrap: on
line source

env:
  CIRRUS_CLONE_DEPTH: 3
  FEATURES: huge

freebsd_task:
  name: FreeBSD
  matrix:
    - name: FreeBSD 14.1
      freebsd_instance:
        image_family: freebsd-14-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