view .cirrus.yml @ 35352:7295a57ad53d

runtime(termdebug: Fix errors in using the latest termdebug.vim Commit: https://github.com/vim/vim/commit/03a3df15ca8bdae27b609eed815132fb79365fb0 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Sun Jun 9 16:42:45 2024 +0200 runtime(termdebug: Fix errors in using the latest termdebug.vim closes: https://github.com/vim/vim/issues/14941 Signed-off-by: Yegappan Lakshmanan <yegappan@yahoo.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Sun, 09 Jun 2024 16:45:08 +0200
parents 956a5fa10aaa
children
line wrap: on
line source

env:
  CIRRUS_CLONE_DEPTH: 3
  FEATURES: huge

freebsd_task:
  name: FreeBSD
  matrix:
    - name: FreeBSD 14.1
      freebsd_instance:
        image_family: freebsd-14-1
  timeout_in: 20m
  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