view .cirrus.yml @ 22954:7b0aa7e2274f v8.2.2024

patch 8.2.2024: flicker when redrawing a popup with a title and border Commit: https://github.com/vim/vim/commit/d91467f830236ae35eb4108d329a1e26a3f1ebc6 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Nov 21 12:42:09 2020 +0100 patch 8.2.2024: flicker when redrawing a popup with a title and border Problem: Flicker when redrawing a popup with a title and border. Solution: Do not redraw the border where the title is displayed. (Naruhiko Nishino, closes #7334)
author Bram Moolenaar <Bram@vim.org>
date Sat, 21 Nov 2020 12:45:03 +0100
parents 93dae47699fb
children b2660a8bbf36
line wrap: on
line source

env:
  CIRRUS_CLONE_DEPTH: 3
  FEATURES: huge

freebsd_12_task:
  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