The Trunk: System-mt.1155.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: System-mt.1155.mcz

commits-2
Marcel Taeumel uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-mt.1155.mcz

==================== Summary ====================

Name: System-mt.1155
Author: mt
Time: 28 April 2020, 12:11:07.714111 pm
UUID: 6949d8a6-9bc9-3948-ac32-9934474feb74
Ancestors: System-eem.1154

Fixes URL to CI badge. Not sure why it has worked before.

=============== Diff against System-eem.1154 ===============

Item was changed:
  ----- Method: SystemVersion>>ciStatusBadgeUrl (in category 'continuous integration') -----
  ciStatusBadgeUrl
 
  | branch |
  branch := 'squeak-{1}{2}{3}' format: {
  self isRelease ifTrue: [self majorVersionNumber] ifFalse: [''].
  self isRelease ifTrue: ['.'] ifFalse: ['trunk'].
  self isRelease ifTrue: [self minorVersionNumber] ifFalse: [''] }.
 
+ ^ 'https://api.travis-ci.org/squeak-smalltalk/squeak-app.png?branch=', branch!
- ^ 'https://secure.travis-ci.org/squeak-smalltalk/squeak-app.png?branch=', branch!


Reply | Threaded
Open this post in threaded view
|

Re: The Trunk: System-mt.1155.mcz

K K Subbu
On 28/04/20 10:11 am, [hidden email] wrote:
> Fixes URL to CI badge. Not sure why it has worked before.
> ...
>    
> + ^ 'https://api.travis-ci.org/squeak-smalltalk/squeak-app.png?branch=', branch!
> - ^ 'https://secure.travis-ci.org/squeak-smalltalk/squeak-app.png?branch=', branch!

https://docs.travis-ci.com/user/status-images/ refers to
https://travis-ci.org/ only. api or secure seem to be internal hosts.

Currently travis-ci.org redirects to api.travis-ci.org. Perhaps, it used
to redirect to secure.travis-ci.org before but currently its certificate
has expired.

Regards .. Subbu