view .cirrus.yml @ 29521:f538704ca03b v9.0.0102

patch 9.0.0102: reading past end of line with insert mode completion Commit: https://github.com/vim/vim/commit/a6f9e300161f4cb54713da22f65b261595e8e614 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jul 28 21:51:37 2022 +0100 patch 9.0.0102: reading past end of line with insert mode completion Problem: Reading past end of line with insert mode completion. Solution: Check text length.
author Bram Moolenaar <Bram@vim.org>
date Thu, 28 Jul 2022 23:00:04 +0200
parents 1bd1bfc64a47
children 1e4d93103d01
line wrap: on
line source

env:
  CIRRUS_CLONE_DEPTH: 3
  FEATURES: huge

freebsd_task:
  name: FreeBSD
  matrix:
    - name: FreeBSD 13.1
      freebsd_instance:
        image_family: freebsd-13-1
    - name: FreeBSD 12.3
      freebsd_instance:
        image_family: freebsd-12-3
  only_if: $CIRRUS_TAG == ''
  timeout_in: 20m
  install_script:
    - pkg update -f
    - 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