view .cirrus.yml @ 36312:c2b4ce26ca6d draft v9.1.0782

patch 9.1.0782: tests: using wrong neomuttlog file name Commit: https://github.com/vim/vim/commit/0c59c3027199ce593f6612d7cd418f375933c7cb Author: Christian Brabandt <cb@256bit.org> Date: Mon Oct 14 19:56:38 2024 +0200 patch 9.1.0782: tests: using wrong neomuttlog file name Problem: tests: using wrong neomuttlog file name Solution: use correct file name related: #15858 Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Mon, 14 Oct 2024 20:00:14 +0200
parents 8caf93b2d64e
children 5e7774d7f966
line wrap: on
line source

env:
  CIRRUS_CLONE_DEPTH: 3
  FEATURES: huge

freebsd_task:
  name: FreeBSD
  matrix:
    - name: FreeBSD 14.1
      freebsd_instance:
        image_family: freebsd-14-1
  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
  on_failure:
    screendump_artifacts:
      name: "Cirrus-CI-freebsd-failed-tests"
      path: |
        "runtime/syntax/testdir/failed/*"
        "src/testdir/failed/*"
      type: application/octet-stream