Revision 61217a83bd7ff0ce9016eb4df9ded4fdf29a506c authored by Elijah Newren on 21 October 2020, 00:29:08 UTC, committed by Elijah Newren on 02 November 2020, 20:16:21 UTC
Allow the testsuite to run where it treats requests for "recursive" or
the default merge algorithm via consulting the environment variable
GIT_TEST_MERGE_ALGORITHM which is expected to either be "recursive" (the
old traditional algorithm) or "ort" (the new algorithm).

Also, allow folks to pick the new algorithm via config setting.  It
turns out builtin/merge.c already had a way to allow users to specify a
different default merge algorithm: pull.twohead.  Rather odd
configuration name (especially to be in the 'pull' namespace rather than
'merge') but it's there.  Add that same configuration to rebase,
cherry-pick, and revert.

This required updating the various callsites that called merge_trees()
or merge_recursive() to conditionally call the new API, so this serves
as another demonstration of what the new API looks and feels like.
There are almost certainly some callsites that have not yet been
modified to work with the new merge algorithm, but this represents the
ones that I have been testing with thus far.

Signed-off-by: Elijah Newren <newren@gmail.com>
1 parent fce0db8
Raw File
.travis.yml
language: c

cache:
  directories:
    - $HOME/travis-cache

os:
  - linux
  - osx

osx_image: xcode10.1

compiler:
  - clang
  - gcc

matrix:
  include:
    - env: jobname=GETTEXT_POISON
      os: linux
      compiler:
      addons:
      before_install:
    - env: jobname=linux-gcc-4.8
      os: linux
      dist: trusty
      compiler:
    - env: jobname=Linux32
      os: linux
      compiler:
      addons:
      services:
        - docker
      before_install:
      script: ci/run-docker.sh
    - env: jobname=linux-musl
      os: linux
      compiler:
      addons:
      services:
        - docker
      before_install:
      script: ci/run-docker.sh
    - env: jobname=StaticAnalysis
      os: linux
      compiler:
      script: ci/run-static-analysis.sh
      after_failure:
    - env: jobname=Documentation
      os: linux
      compiler:
      script: ci/test-documentation.sh
      after_failure:

before_install: ci/install-dependencies.sh
script: ci/run-build-and-tests.sh
after_failure: ci/print-test-failures.sh

notifications:
  email: false
back to top