Build failed in Jenkins: moose-latest-dev #1280

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

Build failed in Jenkins: moose-latest-dev #1280

admin-2
See <http://localhost:8020/job/moose-latest-dev/1280/>

------------------------------------------
[...truncated 717 lines...]
  BlockClosure>>on:do:
  [:bar | [workBlock value]
  on: HTTPProgress
  do: [:ex |
  (ex total
  ifNil: [true]
  ifNotNil: [ex amount == nil])
  ifFalse: [(nextUpdateTime < Time millisecondClockValue
  or: [ex total = ex amount])
  ifTrue: [bar value: ex amount asFloat / ex total asFloat.
  nextUpdateTime := Time millisecondClockValue + 100]].
  ex resume]] in MCHttpRepository>>displayProgress:during:
  NonInteractiveUIManager(CommandLineUIManager)>>progressInitiationExceptionDefaultAction:
  ProgressInitiationException>>defaultAction
  UndefinedObject>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  ProgressInitiationException(Exception)>>signal
  ProgressInitiationException>>display:at:from:to:during:
  ProgressInitiationException class>>display:at:from:to:during:
  NonInteractiveUIManager(CommandLineUIManager)>>displayProgress:from:to:during:
  MCHttpRepository>>displayProgress:during:
  MCHttpRepository>>readStreamForFileNamed:do:
  MCHttpRepository(MCFileBasedRepository)>>versionReaderForFileNamed:do:
  [self resizeCache: readerCache.
  super
  versionReaderForFileNamed: aString
  do: [:r | r
  ifNotNil: [readerCache at: aString put: r]]] in MCHttpRepository>>versionReaderForFileNamed:
  Dictionary>>at:ifAbsent:
  MCHttpRepository>>versionReaderForFileNamed:
  MCHttpRepository>>versionReaderForFileNamed:do:
  MCHttpRepository(MCFileBasedRepository)>>loadVersionFromFileNamed:
  MCHttpRepository(MCFileBasedRepository)>>goferVersionFrom:
  MetacelloCachingGoferResolvedReference(GoferResolvedReference)>>version
  MetacelloCachingGoferResolvedReference>>version
  [:each | each version] in [aCollection
  do: [:each | each version].
  nearestReference version dependencies do: block.
  notDone := false] in MetacelloFetchingMCSpecLoader>>resolveDependencies:nearest:into:
  OrderedCollection>>do:
  [aCollection
  do: [:each | each version].
  nearestReference version dependencies do: block.
  notDone := false] in MetacelloFetchingMCSpecLoader>>resolveDependencies:nearest:into:
  BlockClosure>>on:do:
  MetacelloFetchingMCSpecLoader>>resolveDependencies:nearest:into:
  [| references nearestReference cachedReference externalReference loadedVersionInfos mcVersion |
  self flag: #cleanup.
  cachedReference := self resolvePackageSpec: packageSpec cachedGofer: self loaderPolicy cacheGofer.
  (cachedReference ~~ nil
  and: [packageSpec getFile ~~ nil])
  ifTrue: [cachedReference name = packageSpec file
  ifTrue: [^ self]].
  references := self retryingResolvePackageSpecReferences: packageSpec gofer: gofer.
  nearestReference := references last asMetacelloCachingResolvedReference.
  (cachedReference ~~ nil
  and: [cachedReference name = nearestReference name])
  ifTrue: [^ self].
  (self ignoreImage not
  and: [(loadedVersionInfos := self ancestorsFor: packageSpec) ~~ nil])
  ifTrue: [loadedVersionInfos
  do: [:info |
  info name = nearestReference name
  ifTrue: [^ self].
  nil]].
  externalReference := (references
  select: [:ref | ref name = nearestReference name]) first asMetacelloCachingResolvedReference.
  self repositoryMap at: externalReference name put: externalReference repository.
  (self
  resolveDependencies: externalReference
  nearest: nearestReference
  into: (OrderedCollection with: nearestReference))
  do: [:reference |
  | pSpec l |
  mcVersion := reference version.
  (l := (GoferVersionReference name: reference name)
  resolveAllWith: self loaderPolicy cacheGofer) isEmpty
  ifTrue: [self cacheRepository storeVersion: mcVersion.
  reference == nearestReference
  ifTrue: [pSpec := packageSpec]
  ifFalse: [pSpec := packageSpec project packageSpec.
  pSpec name: mcVersion info].
  self loadData
  addVersion: mcVersion
  versionInfo: mcVersion info
  resolvedReference: reference
  packageSpec: pSpec]].
  self loaderPolicy resetCacheGofer.
  self preLoad: packageSpec.
  (MetacelloDirective
  loadPackage: packageSpec
  externalReference: externalReference
  loader: self)
  addTo: self loadDirective.
  self postLoad: packageSpec.
  Transcript cr; show: 'Fetched -> ' , externalReference name , ' --- ' , externalReference repository description , ' --- ' , nearestReference repository description] in MetacelloFetchingMCSpecLoader>>linearLoadPackageSpec:gofer:
  [:bar |
  bar value: 1.
  aBlock value.
  bar value: 2] in MetacelloPharoPlatform>>do:displaying:
  NonInteractiveUIManager(CommandLineUIManager)>>progressInitiationExceptionDefaultAction:
  ProgressInitiationException>>defaultAction
  UndefinedObject>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  ProgressInitiationException(Exception)>>signal
  ProgressInitiationException>>display:at:from:to:during:
  ProgressInitiationException class>>display:at:from:to:during:
  ByteString(String)>>displayProgressAt:from:to:during:
  MetacelloPharoPlatform>>do:displaying:
  MetacelloFetchingMCSpecLoader>>linearLoadPackageSpec:gofer:
  MetacelloPackageSpec>>loadUsing:gofer:
  [:pkg | pkg loadUsing: self gofer: gofer] in MetacelloFetchingMCSpecLoader(MetacelloCommonMCSpecLoader)>>linearLoadPackageSpecs:repositories:
  OrderedCollection>>do:
  MetacelloFetchingMCSpecLoader(MetacelloCommonMCSpecLoader)>>linearLoadPackageSpecs:repositories:
  [super linearLoadPackageSpecs: packageSpecs repositories: repositories] in MetacelloFetchingMCSpecLoader>>atomicLoadPackageSpecs:repositories:
  BlockClosure>>ensure:
  MetacelloLoaderPolicy>>pushLoadDirective:during:
  MetacelloLoaderPolicy>>pushAtomicLoadDirectivesDuring:for:
  MetacelloFetchingMCSpecLoader>>atomicLoadPackageSpecs:repositories:
  MetacelloFetchingMCSpecLoader(MetacelloCommonMCSpecLoader)>>load
  MetacelloMCVersionSpecLoader>>load
  MetacelloMCVersion>>executeLoadFromArray:
  [:dict | ^ self executeLoadFromArray: anArray] in [self versionSpec loader: newLoader.
  MetacelloPlatform current
  useStackCacheDuring: [:dict | ^ self executeLoadFromArray: anArray]
  defaultDictionary: Dictionary new] in [[self versionSpec loader: newLoader.
  MetacelloPlatform current
  useStackCacheDuring: [:dict | ^ self executeLoadFromArray: anArray]
  defaultDictionary: Dictionary new]
  ensure: [self versionSpec loader: originalLoader]] in MetacelloMCVersion>>fetchRequiredFromArray:
  [^ aBlock value: dict] in MetacelloPharoPlatform(MetacelloPlatform)>>useStackCacheDuring:defaultDictionary:
  BlockClosure>>on:do:
  MetacelloPharoPlatform(MetacelloPlatform)>>useStackCacheDuring:defaultDictionary:
  [self versionSpec loader: newLoader.
  MetacelloPlatform current
  useStackCacheDuring: [:dict | ^ self executeLoadFromArray: anArray]
  defaultDictionary: Dictionary new] in [[self versionSpec loader: newLoader.
  MetacelloPlatform current
  useStackCacheDuring: [:dict | ^ self executeLoadFromArray: anArray]
  defaultDictionary: Dictionary new]
  ensure: [self versionSpec loader: originalLoader]] in MetacelloMCVersion>>fetchRequiredFromArray:
  BlockClosure>>ensure:
  [[self versionSpec loader: newLoader.
  MetacelloPlatform current
  useStackCacheDuring: [:dict | ^ self executeLoadFromArray: anArray]
  defaultDictionary: Dictionary new]
  ensure: [self versionSpec loader: originalLoader]] in MetacelloMCVersion>>fetchRequiredFromArray:
  [:bar |
  bar value: 1.
  aBlock value.
  bar value: 2] in MetacelloPharoPlatform>>do:displaying:
  NonInteractiveUIManager(CommandLineUIManager)>>progressInitiationExceptionDefaultAction:
  ProgressInitiationException>>defaultAction
  UndefinedObject>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  MethodContext(ContextPart)>>handleSignal:
  -- and more not shown ---------------------------------------------------------------------------------
 
  THERE_BE_DRAGONS_HERE
  Got startup errors:
  -------------------------------------------------------------------------------
 
  THERE_BE_DRAGONS_HERE
      PrimitiveFailed: primitive #primSocketCreateNetwork:type:receiveBufferSize:sendBufSize:semaIndex:readSemaIndex:writeSemaIndex: in Socket failed
  -------------------------------------------------------------------------------
 
Build step 'Execute shell' marked build as failure
Recording test results
Archiving artifacts
_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Jenkins build is back to normal : moose-latest-dev #1281

admin-2
See <http://localhost:8020/job/moose-latest-dev/1281/>

_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev