view .cirrus.yml @ 28382:f24d4826e6bf v8.2.4716

patch 8.2.4716: memory allocation failure not tested when defining a function Commit: https://github.com/vim/vim/commit/7c7e19cf50d76568e2637ad66b095044a41c6a82 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Sat Apr 9 11:09:07 2022 +0100 patch 8.2.4716: memory allocation failure not tested when defining a function Problem: Memory allocation failure not tested when defining a function. Solution: Add a test. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/10127)
author Bram Moolenaar <Bram@vim.org>
date Sat, 09 Apr 2022 12:15:02 +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