view .cirrus.yml @ 19814:e7bbf6cadc9e v8.2.0464

patch 8.2.0464: typos and other small problems Commit: https://github.com/vim/vim/commit/2d9d409ad4fab1ae7ceaecc0ef0e9b511d868374 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Mar 27 20:52:45 2020 +0100 patch 8.2.0464: typos and other small problems Problem: Typos and other small problems. Solution: Fix the typos. Add missing file to distribution.
author Bram Moolenaar <Bram@vim.org>
date Fri, 27 Mar 2020 21:00:06 +0100
parents 97d534e17874
children 8a6e2b44b08f
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}
    - src/vim --version
  test_script:
    # Runtime Indent tests do not work, run only the normal test suite
    - cd src && make test