view .cirrus.yml @ 23608:3b378f03f713 v8.2.2346

patch 8.2.2346: Codecov reports every little coverage drop Commit: https://github.com/vim/vim/commit/845b72854de90de13879598df53f1c388e52e1ba Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jan 14 17:55:59 2021 +0100 patch 8.2.2346: Codecov reports every little coverage drop Problem: Codecov reports every little coverage drop. Solution: Tolerate a 0.05% drop. Hide the appveyor config file. (Ozaki Kiichi, closes #7678)
author Bram Moolenaar <Bram@vim.org>
date Thu, 14 Jan 2021 18:00:04 +0100
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