diff options
author | Joe Orton <jorton@apache.org> | 2022-03-07 12:04:26 +0100 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2022-03-07 12:04:26 +0100 |
commit | 508324a39a9ed63ba02800488fb2c9c2871ffc9d (patch) | |
tree | df51a894f1e77229a3bfe702e2696ecd4dc2cafa /test/test_travis_conditions.sh | |
parent | Add a missing space. (diff) | |
download | apache2-508324a39a9ed63ba02800488fb2c9c2871ffc9d.tar.xz apache2-508324a39a9ed63ba02800488fb2c9c2871ffc9d.zip |
Adjust Travis branch-matching conditions to treat any
branch starting "2.4" like 2.4.x (in addition to
"candidate-2.4").
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1898671 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/test_travis_conditions.sh')
-rwxr-xr-x | test/test_travis_conditions.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/test_travis_conditions.sh b/test/test_travis_conditions.sh index 32f663ae25..82794eb76d 100755 --- a/test/test_travis_conditions.sh +++ b/test/test_travis_conditions.sh @@ -34,6 +34,9 @@ testit '{"tag": "2.4.49"}' 2.4.x testit '{"tag": "2.5.59"}' trunk testit '{"branch": "2.4.x"}' 2.4.x testit '{"branch": "candidate-2.4.49"}' 2.4.x +testit '{"branch": "2.4.55-candidate"}' 2.4.x +testit '{"branch": "2.4-backport-branch"}' 2.4.x +testit '{"branch": "2.4.x-something"}' 2.4.x testit '{"branch": "2.5.0"}' trunk testit '{"branch": "2.5.x"}' trunk testit '{"branch": "trunk"}' trunk |