Hi,
I seem to be having some trouble on the Pharo Contributions CI. I successfully
created some projects before, but this time something strange is happening.
It seems as if a win7 slave is doing the build instead of the linux slaves that
I am used to.
Has something changed ?
I want to detect that I am running on the CI so that I can skip some tests that
require resources not available there, but I fear the following won't work on
Windows:
runningOnInriaCI
| platform ci |
^ [
platform := OSPlatform current.
ci := platform environment at: #CI ifAbsent: [ '' ].
ci = 'ci.inria.fr' ]
on: MessageNotUnderstood
do: [ false ]
What is the recommended way to use linux-only slaves ?
Any other ideas ?
Thanks,
Sven