https://github.com/git/git
Raw File
Tip revision: af778cd9be6307e34f9f900fd42eb826c65b32da authored by Taylor Blau on 30 September 2022, 21:00:58 UTC
Git 2.32.4
Tip revision: af778cd
.cirrus.yml
env:
  CIRRUS_CLONE_DEPTH: 1

freebsd_12_task:
  freebsd_instance:
    image: freebsd-12-1-release-amd64
  install_script:
    pkg install -y gettext gmake perl5
  create_user_script:
    - pw useradd git
    - chown -R git:git .
  build_script:
    - su git -c gmake
  test_script:
    - su git -c 'gmake test'
back to top