view .cirrus.yml @ 28327:e6022d580823 v8.2.4689

patch 8.2.4689: using <Cmd> in a mapping does not work for mouse keys Commit: https://github.com/vim/vim/commit/d0fb2d804183c2786578b4c32ba5b92938f93d0e Author: Bram Moolenaar <Bram@vim.org> Date: Mon Apr 4 21:03:52 2022 +0100 patch 8.2.4689: using <Cmd> in a mapping does not work for mouse keys Problem: Using <Cmd> in a mapping does not work for mouse keys in Insert mode. (Sergey Vlasov) Solution: When reading the <Cmd> argument do not use the stuff buffer. (closes #10080)
author Bram Moolenaar <Bram@vim.org>
date Mon, 04 Apr 2022 22:15:03 +0200
parents b2660a8bbf36
children 3a4ed4d1080d
line wrap: on
line source

env:
  CIRRUS_CLONE_DEPTH: 3
  FEATURES: huge

freebsd_12_task:
  only_if: $CIRRUS_TAG == ''
  timeout_in: 20m
  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