view .cirrus.yml @ 28664:0e589fdf0081 v8.2.4856

patch 8.2.4856: MinGW compiler complains about unknown escape sequence Commit: https://github.com/vim/vim/commit/2890c0b9d2416489d48bc47567378503997fef84 Author: Christian Brabandt <cb@256bit.org> Date: Mon May 2 10:34:15 2022 +0100 patch 8.2.4856: MinGW compiler complains about unknown escape sequence Problem: MinGW compiler complains about unknown escape sequence. Solution: Avoid using a backslash in path. (Christian Brabandt, closes #10337)
author Bram Moolenaar <Bram@vim.org>
date Mon, 02 May 2022 11:45:04 +0200
parents 3a4ed4d1080d
children 1bd1bfc64a47
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-3-release-amd64
  install_script:
    - pkg update -f
    - 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