Travis: fix "Testing previous commits"
Fixes/massages TRAVIS_COMMIT_RANGE. Ref: https://github.com/awesomeWM/awesome/pull/1298#pullrequestreview-14364986
This commit is contained in:
parent
88cca77fdb
commit
69915fb658
12
.travis.yml
12
.travis.yml
|
@ -179,12 +179,14 @@ script:
|
||||||
set -ev
|
set -ev
|
||||||
if [ "$TEST_PREV_COMMITS" = 1 ] && ! [ "$TRAVIS_PULL_REQUEST" = false ]; then
|
if [ "$TEST_PREV_COMMITS" = 1 ] && ! [ "$TRAVIS_PULL_REQUEST" = false ]; then
|
||||||
# Check each commit separately (to make git-bisect less annoying).
|
# Check each commit separately (to make git-bisect less annoying).
|
||||||
echo "Testing previous commits based on TRAVIS_COMMIT_RANGE=$TRAVIS_COMMIT_RANGE"
|
# Fix Travis' commit range (https://github.com/travis-ci/travis-ci/issues/4596).
|
||||||
rev_list="$(git rev-list --bisect-all $TRAVIS_COMMIT_RANGE)"
|
commit_range="${TRAVIS_COMMIT_RANGE/.../..}"
|
||||||
|
echo "Testing previous commits ($commit_range)"
|
||||||
|
rev_list="$(git rev-list --bisect-all $commit_range)"
|
||||||
echo "rev-list: $rev_list"
|
echo "rev-list: $rev_list"
|
||||||
commits="$(echo $rev_list | grep -v 'dist=0' | cut -d\ -f 1)"
|
commits="$(echo "$rev_list" | grep -v 'dist=0' | cut -d\ -f 1)"
|
||||||
echo "Testing commits: $commits"
|
n="$(echo "$commits" | wc -l)"
|
||||||
n="$(echo commits | wc -l)"
|
echo "Testing $n commits: $commits"
|
||||||
i=0
|
i=0
|
||||||
failed=
|
failed=
|
||||||
for commit in $commits; do
|
for commit in $commits; do
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/bin/sh
|
#!/usr/bin/env bash
|
||||||
#
|
#
|
||||||
# Process (API) docs after a successful build on Travis (via ../.travis.yml).
|
# Process (API) docs after a successful build on Travis (via ../.travis.yml).
|
||||||
#
|
#
|
||||||
|
@ -76,7 +76,7 @@ COMMIT_MSG="Update docs for $AWESOME_VERSION via Travis
|
||||||
Last commit message:
|
Last commit message:
|
||||||
$LAST_COMMIT_MSG
|
$LAST_COMMIT_MSG
|
||||||
|
|
||||||
Commits: https://github.com/awesomeWM/awesome/compare/${TRAVIS_COMMIT_RANGE}
|
Commits: https://github.com/awesomeWM/awesome/compare/${TRAVIS_COMMIT_RANGE/.../..}
|
||||||
Build URL: https://travis-ci.org/awesomeWM/awesome/builds/${TRAVIS_BUILD_ID}"
|
Build URL: https://travis-ci.org/awesomeWM/awesome/builds/${TRAVIS_BUILD_ID}"
|
||||||
git commit -m "[relevant] $COMMIT_MSG"
|
git commit -m "[relevant] $COMMIT_MSG"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue