The Trunk: System-mt.1220.mcz

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

The Trunk: System-mt.1220.mcz

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

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

Name: System-mt.1220
Author: mt
Time: 4 March 2021, 1:35:25.601178 pm
UUID: d5324489-3128-a944-a52b-faf8d4c8ef23
Ancestors: System-mt.1219

Squeak was migrated from travis-ci.org to travis-ci.com. The former will be shutting down soon.

=============== Diff against System-mt.1219 ===============

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.com/squeak-smalltalk/squeak-app.png?branch=', branch!
- ^ 'https://api.travis-ci.org/squeak-smalltalk/squeak-app.png?branch=', branch!

Item was changed:
  ----- Method: SystemVersion>>ciStatusPageUrl (in category 'continuous integration') -----
  ciStatusPageUrl
  "In a release image, let the user see the overview of branches to choose from. I am not aware of a permanent link for a specific branch. In a trunk image, just let Travis report the state of the main branch, which is usually for trunk builds."
 
+ ^ 'http://travis-ci.com/squeak-smalltalk/squeak-app{1}' format: {
- ^ 'http://travis-ci.org/squeak-smalltalk/squeak-app{1}' format: {
  self isRelease ifFalse: [''] ifTrue: ['/branches'] }!