view .cirrus.yml @ 22934:3f04c2cf0ced v8.2.2014

patch 8.2.2014: using CTRL-O in a prompt buffer moves cursor to start Commit: https://github.com/vim/vim/commit/ee8b787bcd15f63a938243770065e704c9b5c85f Author: Bram Moolenaar <Bram@vim.org> Date: Thu Nov 19 18:46:25 2020 +0100 patch 8.2.2014: using CTRL-O in a prompt buffer moves cursor to start Problem: Using CTRL-O in a prompt buffer moves cursor to start of the line. Solution: Do not move the cursor when restarting edit. (closes https://github.com/vim/vim/issues/7330)
author Bram Moolenaar <Bram@vim.org>
date Thu, 19 Nov 2020 19:00:05 +0100
parents 93dae47699fb
children b2660a8bbf36
line wrap: on
line source

env:
  CIRRUS_CLONE_DEPTH: 3
  FEATURES: huge

freebsd_12_task:
  freebsd_instance:
    image: freebsd-12-1-release-amd64
  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