view .cirrus.yml @ 34489:4dd6d243e4f7 v9.1.0152

patch 9.1.0152: Coverity complains about ignoring return value Commit: https://github.com/vim/vim/commit/af7ae8160041e2d17c56945381e9370e7178e596 Author: Christian Brabandt <cb@256bit.org> Date: Wed Mar 6 19:31:39 2024 +0100 patch 9.1.0152: Coverity complains about ignoring return value Problem: Coverity complains about ignoring return value of win_split() (after v9.1.150) Solution: Check if win_split() failed, add winfixbuf.res to Makefile
author Christian Brabandt <cb@256bit.org>
date Wed, 06 Mar 2024 21:00:08 +0100
parents 4cffda5da6f4
children
line wrap: on
line source

env:
  CIRRUS_CLONE_DEPTH: 3
  FEATURES: huge

freebsd_task:
  name: FreeBSD
  matrix:
    - name: FreeBSD 14.0
      freebsd_instance:
        image_family: freebsd-14-0
  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