view .cirrus.yml @ 28323:82f34ca7b3b7 v8.2.4687

patch 8.2.4687: "vimgrep /%v/ *" may cause a crash Commit: https://github.com/vim/vim/commit/e8a4c0d91f89544e4f94b7bd612b5fb780944c33 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Apr 4 18:14:34 2022 +0100 patch 8.2.4687: "vimgrep /\%v/ *" may cause a crash Problem: "vimgrep /\%v/ *" may cause a crash. Solution: When compiling the pattern with the old engine fails, restore the regprog of the new engine instead of leaving it NULL. (closes #10079)
author Bram Moolenaar <Bram@vim.org>
date Mon, 04 Apr 2022 19: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