Skip to content

Commit

Permalink
Add testing with merge-ort merge strategy
Browse files Browse the repository at this point in the history
In preparation for switching from merge-recursive to merge-ort as the
default strategy, ensure that we are testing it.

Signed-off-by: Elijah Newren <newren@gmail.com>
  • Loading branch information
newren committed Mar 17, 2021
1 parent 1c6361c commit d8536f5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Expand Up @@ -252,6 +252,7 @@ jobs:
MSYSTEM: MINGW64
NO_SVN_TESTS: 1
GIT_TEST_SKIP_REBASE_P: 1
GIT_TEST_MERGE_ALGORITHM: ort
run: |
& .\git-sdk-64-minimal\usr\bin\bash.exe -lc @"
# Let Git ignore the SDK and the test-cache
Expand Down
6 changes: 6 additions & 0 deletions ci/lib.sh
Expand Up @@ -182,6 +182,12 @@ export DEFAULT_TEST_TARGET=prove
export GIT_TEST_CLONE_2GB=true
export SKIP_DASHED_BUILT_INS=YesPlease

case "$jobname" in
*-gcc)
export GIT_TEST_MERGE_ALGORITHM=ort
;;
esac

case "$jobname" in
linux-clang|linux-gcc)
if [ "$jobname" = linux-gcc ]
Expand Down

0 comments on commit d8536f5

Please sign in to comment.