mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-26 19:23:26 -03:00
Merge #20697: ci: Fix COMMIT_RANGE variable value for PRs
3c2478c385
ci: Print COMMIT_RANGE to the log as it was in Travis CI (Hennadii Stepanov)c123892c2e
ci: Drop Travis-specific workaround for shellcheck (Hennadii Stepanov)10af252d97
ci: Drop Travis-specific way to set COMMIT_RANGE variable (Hennadii Stepanov)93504da3a9
ci: Fix COMMIT_RANGE variable value for PRs (Hennadii Stepanov) Pull request description: This PR: - is a #20658 and #20682 followup - set the `COMMIT_RANGE` variable correctly for PRs - cleans up Travis-specific code - prints COMMIT_RANGE value to the log for convenience as it was in Travis CI ACKs for top commit: MarcoFalke: ACK3c2478c385
Tree-SHA512: beb933352b10fd5eb3e66373ddb62439e4f3a03b50fb037ee89fa92c0706cec41d05f2d307f15bb18d1e634e6464f4e123b7e2f88703c8edfd145d8d6eff0b1a
This commit is contained in:
commit
f061da2887
6 changed files with 6 additions and 36 deletions
|
@ -1,9 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
#
|
|
||||||
# Copyright (c) 2018-2019 The Bitcoin Core developers
|
|
||||||
# Distributed under the MIT software license, see the accompanying
|
|
||||||
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
||||||
|
|
||||||
export LC_ALL=C
|
|
||||||
|
|
||||||
git fetch
|
|
|
@ -6,13 +6,12 @@
|
||||||
|
|
||||||
export LC_ALL=C
|
export LC_ALL=C
|
||||||
|
|
||||||
|
GIT_HEAD=$(git rev-parse HEAD)
|
||||||
if [ -n "$CIRRUS_PR" ]; then
|
if [ -n "$CIRRUS_PR" ]; then
|
||||||
# CIRRUS_PR will be present in a Cirrus environment. For builds triggered
|
COMMIT_RANGE="$CIRRUS_BASE_SHA..$GIT_HEAD"
|
||||||
# by a pull request this is the name of the branch targeted by the pull request.
|
|
||||||
# https://cirrus-ci.org/guide/writing-tasks/#environment-variables
|
|
||||||
COMMIT_RANGE="$CIRRUS_BRANCH..HEAD"
|
|
||||||
test/lint/commit-script-check.sh $COMMIT_RANGE
|
test/lint/commit-script-check.sh $COMMIT_RANGE
|
||||||
fi
|
fi
|
||||||
|
export COMMIT_RANGE
|
||||||
|
|
||||||
# This only checks that the trees are pure subtrees, it is not doing a full
|
# This only checks that the trees are pure subtrees, it is not doing a full
|
||||||
# check with -r to not have to fetch all the remotes.
|
# check with -r to not have to fetch all the remotes.
|
||||||
|
@ -30,3 +29,6 @@ if [ "$CIRRUS_REPO_FULL_NAME" = "bitcoin/bitcoin" ] && [ -n "$CIRRUS_CRON" ]; th
|
||||||
${CI_RETRY_EXE} gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys $(<contrib/verify-commits/trusted-keys) &&
|
${CI_RETRY_EXE} gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys $(<contrib/verify-commits/trusted-keys) &&
|
||||||
./contrib/verify-commits/verify-commits.py --clean-merge=2;
|
./contrib/verify-commits/verify-commits.py --clean-merge=2;
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
echo
|
||||||
|
git log --no-merges --oneline $COMMIT_RANGE
|
||||||
|
|
|
@ -8,5 +8,4 @@ export LC_ALL=C.UTF-8
|
||||||
|
|
||||||
set -o errexit; source ./ci/test/00_setup_env.sh
|
set -o errexit; source ./ci/test/00_setup_env.sh
|
||||||
set -o errexit; source ./ci/lint/04_install.sh
|
set -o errexit; source ./ci/lint/04_install.sh
|
||||||
set -o errexit; source ./ci/lint/05_before_script.sh
|
|
||||||
set -o errexit; source ./ci/lint/06_script.sh
|
set -o errexit; source ./ci/lint/06_script.sh
|
||||||
|
|
|
@ -23,13 +23,6 @@ while getopts "?" opt; do
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
# TRAVIS_BRANCH will be present in a Travis environment. For builds triggered
|
|
||||||
# by a pull request this is the name of the branch targeted by the pull request.
|
|
||||||
# https://docs.travis-ci.com/user/environment-variables/
|
|
||||||
if [ -n "${TRAVIS_BRANCH}" ]; then
|
|
||||||
COMMIT_RANGE="$TRAVIS_BRANCH..HEAD"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -z "${COMMIT_RANGE}" ]; then
|
if [ -z "${COMMIT_RANGE}" ]; then
|
||||||
if [ -n "$1" ]; then
|
if [ -n "$1" ]; then
|
||||||
COMMIT_RANGE="HEAD~$1...HEAD"
|
COMMIT_RANGE="HEAD~$1...HEAD"
|
||||||
|
|
|
@ -8,14 +8,6 @@
|
||||||
|
|
||||||
export LC_ALL=C
|
export LC_ALL=C
|
||||||
|
|
||||||
# The shellcheck binary segfault/coredumps in Travis with LC_ALL=C
|
|
||||||
# It does not do so in Ubuntu 14.04, 16.04, 18.04 in versions 0.3.3, 0.3.7, 0.4.6
|
|
||||||
# respectively. So export LC_ALL=C is set as required by lint-shell-locale.sh
|
|
||||||
# but unset here in case of running in Travis.
|
|
||||||
if [ "$TRAVIS" = "true" ]; then
|
|
||||||
unset LC_ALL
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Disabled warnings:
|
# Disabled warnings:
|
||||||
disabled=(
|
disabled=(
|
||||||
SC2046 # Quote this to prevent word splitting.
|
SC2046 # Quote this to prevent word splitting.
|
||||||
|
|
|
@ -22,13 +22,6 @@ while getopts "?" opt; do
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
# TRAVIS_BRANCH will be present in a Travis environment. For builds triggered
|
|
||||||
# by a pull request this is the name of the branch targeted by the pull request.
|
|
||||||
# https://docs.travis-ci.com/user/environment-variables/
|
|
||||||
if [ -n "${TRAVIS_BRANCH}" ]; then
|
|
||||||
COMMIT_RANGE="$TRAVIS_BRANCH..HEAD"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -z "${COMMIT_RANGE}" ]; then
|
if [ -z "${COMMIT_RANGE}" ]; then
|
||||||
if [ -n "$1" ]; then
|
if [ -n "$1" ]; then
|
||||||
COMMIT_RANGE="HEAD~$1...HEAD"
|
COMMIT_RANGE="HEAD~$1...HEAD"
|
||||||
|
|
Loading…
Add table
Reference in a new issue