view .cirrus.yml @ 33274:267308bfae50 v9.0.1904

patch 9.0.1904: Cirrus-CI fails because we have used all credits Commit: https://github.com/vim/vim/commit/e6059c321b384d35493b4f8038756585d6249357 Author: dundargoc <gocdundar@gmail.com> Date: Sun Sep 17 16:53:18 2023 +0200 patch 9.0.1904: Cirrus-CI fails because we have used all credits Problem: Cirrus-CI fails because we have used all credits Solution: Remove FreeBSD 13.1 and MacOS M1 Cirrus CI has started introducing monthly limits. Vim has exceeded the monthly limit which means our CI unfortunately starts to fail. So let's remove some CI tasks, so that in the future we won't run out of credits so fast. closes: #13108 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: dundargoc <gocdundar@gmail.com>
author Christian Brabandt <cb@256bit.org>
date Sun, 17 Sep 2023 17:00:03 +0200
parents 6c1d29d45734
children 42b89193ab3e
line wrap: on
line source

env:
  CIRRUS_CLONE_DEPTH: 3
  FEATURES: huge

freebsd_task:
  name: FreeBSD
  matrix:
    - name: FreeBSD 14.0
      freebsd_instance:
        image_family: freebsd-14-0
  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