You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ap...@apache.org on 2021/12/29 16:51:57 UTC

[arrow] branch master updated: MINOR: [Archery] Fix Travis-CI build URL template

This is an automated email from the ASF dual-hosted git repository.

apitrou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new d69957d  MINOR: [Archery] Fix Travis-CI build URL template
d69957d is described below

commit d69957dee479c5521afe6d51ec873bde8d7b6836
Author: Antoine Pitrou <an...@python.org>
AuthorDate: Wed Dec 29 17:50:19 2021 +0100

    MINOR: [Archery] Fix Travis-CI build URL template
    
    Fix the hyperlink for Crossbow build jobs running on Travis-CI.
    
    Closes #12050 from pitrou/crossbow-travis-url
    
    Authored-by: Antoine Pitrou <an...@python.org>
    Signed-off-by: Antoine Pitrou <an...@python.org>
---
 dev/archery/archery/crossbow/reports.py                               | 2 +-
 .../archery/crossbow/tests/fixtures/crossbow-success-message.md       | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev/archery/archery/crossbow/reports.py b/dev/archery/archery/crossbow/reports.py
index f86a67a..f048590 100644
--- a/dev/archery/archery/crossbow/reports.py
+++ b/dev/archery/archery/crossbow/reports.py
@@ -260,7 +260,7 @@ class CommentReport(Report):
         ),
         'travis': _markdown_badge.format(
             title='TravisCI',
-            url='https://travis-ci.com/{repo}/branches',
+            url='https://app.travis-ci.com/github/{repo}/branches',
             badge='https://img.shields.io/travis/{repo}/{branch}.svg'
         ),
         'circle': _markdown_badge.format(
diff --git a/dev/archery/archery/crossbow/tests/fixtures/crossbow-success-message.md b/dev/archery/archery/crossbow/tests/fixtures/crossbow-success-message.md
index 1582521..7da0184 100644
--- a/dev/archery/archery/crossbow/tests/fixtures/crossbow-success-message.md
+++ b/dev/archery/archery/crossbow/tests/fixtures/crossbow-success-message.md
@@ -5,6 +5,6 @@ Submitted crossbow builds: [{repo} @ {branch}](https://github.com/{repo}/branche
 |Task|Status|
 |----|------|
 |docker-cpp-cmake32|[![CircleCI](https://img.shields.io/circleci/build/github/{repo}/{branch}-circle-docker-cpp-cmake32.svg)](https://circleci.com/gh/{repo}/tree/{branch}-circle-docker-cpp-cmake32)|
-|wheel-osx-cp36m|[![TravisCI](https://img.shields.io/travis/{repo}/{branch}-travis-wheel-osx-cp36m.svg)](https://travis-ci.com/{repo}/branches)|
-|wheel-osx-cp37m|[![TravisCI](https://img.shields.io/travis/{repo}/{branch}-travis-wheel-osx-cp37m.svg)](https://travis-ci.com/{repo}/branches)|
+|wheel-osx-cp36m|[![TravisCI](https://img.shields.io/travis/{repo}/{branch}-travis-wheel-osx-cp36m.svg)](https://app.travis-ci.com/github/{repo}/branches)|
+|wheel-osx-cp37m|[![TravisCI](https://img.shields.io/travis/{repo}/{branch}-travis-wheel-osx-cp37m.svg)](https://app.travis-ci.com/github/{repo}/branches)|
 |wheel-win-cp36m|[![Appveyor](https://img.shields.io/appveyor/ci/{repo}/{branch}-appveyor-wheel-win-cp36m.svg)](https://ci.appveyor.com/project/{repo}/history)|