-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into baseline_improvement
- Loading branch information
Showing
16 changed files
with
49 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,28 @@ | ||
language: smalltalk | ||
sudo: false | ||
|
||
# Select operating system(s) | ||
os: | ||
- linux | ||
|
||
# Select compatible Smalltalk image(s) | ||
- linux | ||
smalltalk: | ||
- Pharo-7.0 | ||
- Pharo-6.1 | ||
- Pharo-6.0 | ||
- Pharo-5.0 | ||
- Pharo64-7.0 | ||
- Pharo-7.0 | ||
- Pharo-6.1 | ||
- Pharo-6.0 | ||
- Pharo-5.0 | ||
matrix: | ||
allow_failures: | ||
- smalltalk: Pharo64-7.0 | ||
- smalltalk: Pharo-7.0 | ||
fast_finish: true | ||
before_deploy: | ||
- cp "${SMALLTALK_CI_IMAGE}" "Buoy.image" | ||
- cp "${SMALLTALK_CI_CHANGES}" "Buoy.changes" | ||
- zip -q "${TRAVIS_BRANCH}-${TRAVIS_SMALLTALK_VERSION}.zip" "Buoy.image" "Buoy.changes" | ||
deploy: | ||
provider: releases | ||
api_key: | ||
secure: Eu7fhFGXq3Eavd7TGuv1hfCWGbEzAU+uSQBSyZXbYyO52aZfZcrfOszAiBVtOJVhm0fKlFYIrRGYIuYEvu2gyQF1yJ6V27urlXOiJcieYVauCX5/P8av2UG4/0HwAnrUYcXp7wq4rxhh/U8DEI+iFzzv9uSZucwpslOJr2I/fPRDryef2qfmbiOC2S51rKNbNplOt7X53TiVqE/yvjV4o+goeJ+qS0KmlxJnC7Gyd9VQaaHTojWAVPewavPeOtL6OSeRCZtHTYYF5Skfim6yE6zdkkrJWq7Z4Ykw3Y75BHMIrj4Sexrkns/zb3xWgo4T0wKuRgcFBE4mOOvo/mpM+grua2HXVZxz2uSTW4KG1iqmKdy3ESmMa8iVP4FVsg1EJxGWj0BJolEOShZ2O7Gb6fFGgvCvmKdM/k/3779plcPVTUuvrhKsXIY75Q6qEaEIIoAgHr2HBkanOrOkLA35ZUzm2e2p0daJjQfVybzOE7XZojBmXD6rebcqmjl7pt0r8yztxwxwXpxPtPPycB/Ex+ZzraLKHwNwt3kVcCLI65LWUWnUgV0FoiaVX6Ku5M7OC3ud/HnbFyOkRm7dKvArndARmiTpRlgSRH74F9NcvF5a4mqaxDnmJheBPZa9RUlDD/fc56oXd3U5lz5vgpG7KH1qu55NUaPrDaufKbjedQk= | ||
file: "${TRAVIS_BRANCH}-${TRAVIS_SMALLTALK_VERSION}.zip" | ||
skip_cleanup: true | ||
on: | ||
repo: ba-st/Buoy | ||
tags: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 0 additions & 9 deletions
9
source/Buoy-Dynamic-Binding-Tests.package/BindingTest.class/methodProperties.json
This file was deleted.
Oops, something went wrong.
6 changes: 6 additions & 0 deletions
6
source/Buoy-Dynamic-Binding-Tests.package/OptionalTest.class/instance/testReturn.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
tests-Combining | ||
testReturn | ||
|
||
((Optional containing: 0) return: [ :number | number + 1 ]) withContentDo: [ :number | self assert: number equals: 1 ] ifUnused: [ self fail ]. | ||
|
||
(Optional unused return: [ :number | number + 1 ]) withContentDo: [ self fail ] |
35 changes: 0 additions & 35 deletions
35
source/Buoy-Dynamic-Binding-Tests.package/OptionalTest.class/methodProperties.json
This file was deleted.
Oops, something went wrong.
1 change: 0 additions & 1 deletion
1
source/Buoy-Dynamic-Binding-Tests.package/monticello.meta/version
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
source/Buoy-Dynamic-Binding.package/Binding.class/methodProperties.json
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
source/Buoy-Dynamic-Binding.package/DefinedBinding.class/methodProperties.json
This file was deleted.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
source/Buoy-Dynamic-Binding.package/Optional.class/instance/return..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Combining | ||
return: aMonadycBlock | ||
|
||
self subclassResponsibility |
22 changes: 0 additions & 22 deletions
22
source/Buoy-Dynamic-Binding.package/Optional.class/methodProperties.json
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
source/Buoy-Dynamic-Binding.package/UndefinedBinding.class/methodProperties.json
This file was deleted.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
source/Buoy-Dynamic-Binding.package/UnusedOptional.class/instance/return..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Combining | ||
return: aMonadycBlock | ||
|
||
^ self |
14 changes: 0 additions & 14 deletions
14
source/Buoy-Dynamic-Binding.package/UnusedOptional.class/methodProperties.json
This file was deleted.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
source/Buoy-Dynamic-Binding.package/UsedOptional.class/instance/return..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Combining | ||
return: aMonadycBlock | ||
|
||
^ self class containing: (aMonadycBlock value: content) |
14 changes: 0 additions & 14 deletions
14
source/Buoy-Dynamic-Binding.package/UsedOptional.class/methodProperties.json
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.