view contrib/merge-test-compat.sh @ 5395:366aaaae9a49

packaging: replace wget with curl in Build-Depends At some point, evolve was using curl in some tests that check capabilities when using HTTP. Then in 4e7da688a066 and 3ffa12edc05a it was replaced by wget for Windows compatibility and debian/control was updated (in 783aa685c5d4). Then, in e036dfc8cfcc the tests were switched back to using curl, but debian/control was not updated until now.
author Anton Shestakov <av6@dwimlabs.net>
date Sun, 05 Jul 2020 16:14:09 +0800
parents 17fac26833da
children
line wrap: on
line source

#!/bin/bash
set -euox pipefail

unset GREP_OPTIONS

compatbranches=$(hg branches --quiet | grep 'mercurial-' | grep -v ':' | sort -n --reverse)
prev='stable'
topic=${1:-'test-compat'}
for branch in $compatbranches; do
    # Logic in the revsets below:
    # 1. There is target topic on stable or compatibility branch: merge all
    # those commits, they are related to our work and need to pass tests on all
    # compatibility branches.
    # 2. There is no target topic: avoid any commits that have topic set, they
    # are definitely unrelated to what we're doing.
    # In other words, if you want to test certain commits, assign them all to
    # one topic and provide that topic as the first argument to this script.
    uptarget="first(max(branch('$branch') and topic('$topic')) or max(branch('$branch') and not topic()))"
    hg up -r "$uptarget"
    hg topic "$topic"
    mergetarget="first(max(branch('$prev') and topic('$topic')) or max(branch('$prev') and not topic()))"
    hg merge -r "$mergetarget"
    hg commit -m "test-compat: merge $prev into $branch"
    prev=$branch
done