[swift-corelibs-dev] Server APIs: networking and security kick-off meetings

2016-11-02 Thread Chris Bailey via swift-corelibs-dev
In order to try to schedule kick-off meetings for the Server APIs focus 
areas, I've set up Doodle polls for the networking and security kick-offs, 
with the aim of trying to hold those this week:
Server APIs: Networking sub-team kickoff
http://doodle.com/poll/b5vy7s8vs9pbcb7y
Server APIs: Security sub-team kickoff  
http://doodle.com/poll/6xc84g5kfgv3ebv5
we'll follow up with the HTTP kick-off once we have these two scheduled.

The Doodle poll lets you set what time(s) you'd be able to make a call - 
we'll use either Webex or Google Hangouts for the meeting, so you'll be 
able to use your network connection to take part. We won't be recording 
the call, but we will publish full agenda and minutes to GitHub 
afterwards.

If you'd like to take part, but can't make any of the available times, 
fill in your name and select "Cannot make it". If there's enough people 
that cannot make it, we'll postpone to a later date.

Chris___
swift-corelibs-dev mailing list
swift-corelibs-dev@swift.org
https://lists.swift.org/mailman/listinfo/swift-corelibs-dev


Re: [swift-corelibs-dev] [swift-dev] [Swift CI] Build Failure: 0. OSS - Swift Incremental RA - Ubuntu 15.10 (master) #8568

2016-11-02 Thread Jordan Rose via swift-corelibs-dev
Adding swift-corelibs-dev, since that’s where the Dispatch folks hang out.

> On Nov 2, 2016, at 10:44, Doug Coleman via swift-dev  
> wrote:
> 
> https://bugs.swift.org/browse/SR-2931 
> 
> 
>> On Nov 2, 2016, at 10:43 AM, no-re...@swift.org wrote:
>> 
>> [FAILURE] oss-swift-incremental-RA-linux-ubuntu-15_10 [#8568]
>> 
>> Build URL:   
>> https://ci.swift.org/job/oss-swift-incremental-RA-linux-ubuntu-15_10/8568/ 
>> 
>> Project: oss-swift-incremental-RA-linux-ubuntu-15_10
>> Date of build:   Wed, 02 Nov 2016 10:17:41 -0700
>> Build duration:  25 min
>> Tests:
>> 
>> Name: Swift(linux-x86_64)
>> Failed: 0 test(s), Passed: 8487 test(s), Total: 8487 test(s)
>> Name: Swift-Unit
>> Failed: 0 test(s), Passed: 299 test(s), Total: 299 test(s)
>> 
>> Changes
>> 
>> Commit 3575ee1954ea68f3d569c1f4481ca850d9fe87a3 by practicalswift:
>> [swiftc (94 vs. 5180)] Add crasher in ?
>> 
>> add: 
>> validation-test/compiler_crashers/28463-child-source-range-not-contained-within-its-parent-guard-stmt.swift
> 
> ___
> swift-dev mailing list
> swift-...@swift.org
> https://lists.swift.org/mailman/listinfo/swift-dev

___
swift-corelibs-dev mailing list
swift-corelibs-dev@swift.org
https://lists.swift.org/mailman/listinfo/swift-corelibs-dev


Re: [swift-corelibs-dev] [swift-dev] [Swift CI] Build Failure: 0. OSS - Swift Incremental RA - Ubuntu 15.10 (master) #8568

2016-11-02 Thread Doug Coleman via swift-corelibs-dev
It has also been reported as a dup here: https://bugs.swift.org/browse/SR-3110

It’s important that we fix this one so we stop wasting five minutes of many 
peoples’ time several times a day.

Maybe we should disable it until it’s fixed?

> On Nov 2, 2016, at 10:46 AM, Jordan Rose  wrote:
> 
> Adding swift-corelibs-dev, since that’s where the Dispatch folks hang out.
> 
>> On Nov 2, 2016, at 10:44, Doug Coleman via swift-dev > > wrote:
>> 
>> https://bugs.swift.org/browse/SR-2931 
>> 
>> 
>>> On Nov 2, 2016, at 10:43 AM, no-re...@swift.org  
>>> wrote:
>>> 
>>> [FAILURE] oss-swift-incremental-RA-linux-ubuntu-15_10 [#8568]
>>> 
>>> Build URL:  
>>> https://ci.swift.org/job/oss-swift-incremental-RA-linux-ubuntu-15_10/8568/ 
>>> 
>>> Project:oss-swift-incremental-RA-linux-ubuntu-15_10
>>> Date of build:  Wed, 02 Nov 2016 10:17:41 -0700
>>> Build duration: 25 min
>>> Tests:
>>> 
>>> Name: Swift(linux-x86_64)
>>> Failed: 0 test(s), Passed: 8487 test(s), Total: 8487 test(s)
>>> Name: Swift-Unit
>>> Failed: 0 test(s), Passed: 299 test(s), Total: 299 test(s)
>>> 
>>> Changes
>>> 
>>> Commit 3575ee1954ea68f3d569c1f4481ca850d9fe87a3 by practicalswift:
>>> [swiftc (94 vs. 5180)] Add crasher in ?
>>> 
>>> add: 
>>> validation-test/compiler_crashers/28463-child-source-range-not-contained-within-its-parent-guard-stmt.swift
>> 
>> ___
>> swift-dev mailing list
>> swift-...@swift.org 
>> https://lists.swift.org/mailman/listinfo/swift-dev
> 

___
swift-corelibs-dev mailing list
swift-corelibs-dev@swift.org
https://lists.swift.org/mailman/listinfo/swift-corelibs-dev


Re: [swift-corelibs-dev] [swift-dev] [Swift CI] Build Failure: 0. OSS - Swift Incremental RA - Ubuntu 15.10 (master) #8568

2016-11-02 Thread David P Grove via swift-corelibs-dev
I think the root problem is that some of the dispatch tests, including this
one, are trying to test that timers/events happen within a "reasonable"
interval of time from when they are supposed to.   If deadlines are missed
too badly, then the test is marked as failing.

If we completely disabled all such tests, we run the risk of breaking the
timer/event subsystem of libdispatch and not noticing.

However, on the CI system there is unpredictable load, so "reasonable" is
hard to specify and with some probability, deadlines will be missed no
matter how loosely they are set.

If this test is failing frequently and the infrastructure does not support
rerunning  or ignoring a flagged "flakey" test then disabling it is
probably the expedient option.

Probably what we need to do is strip down to (1) a very reliable subset of
the dispatch tests that are run on most CI jobs and a (2) more
comprehensive set of tests that is run in a separate job just for
libdispatch testing.  Job (2) can afford to include tests with low
probability failures because only the dispatch team would need to pay
attention to them and decide if they were real failures or not.  Is
something like this possible to set up?

--dave



From:   Doug Coleman via swift-corelibs-dev

To: Jordan Rose 
Cc: swift-dev , swift-corelibs-dev

Date:   11/02/2016 01:48 PM
Subject:Re: [swift-corelibs-dev] [swift-dev] [Swift CI] Build Failure:
0. OSS - Swift Incremental RA - Ubuntu 15.10 (master) #8568
Sent by:swift-corelibs-dev-boun...@swift.org



It has also been reported as a dup here:
https://bugs.swift.org/browse/SR-3110

It’s important that we fix this one so we stop wasting five minutes of many
peoples’ time several times a day.

Maybe we should disable it until it’s fixed?

  On Nov 2, 2016, at 10:46 AM, Jordan Rose 
  wrote:

  Adding swift-corelibs-dev, since that’s where the Dispatch folks hang
  out.

On Nov 2, 2016, at 10:44, Doug Coleman via swift-dev <
swift-...@swift.org> wrote:

https://bugs.swift.org/browse/SR-2931


  On Nov 2, 2016, at 10:43 AM, no-re...@swift.org wrote:

  [FAILURE] oss-swift-incremental-RA-linux-ubuntu-15_10
  [#8568]

   
 Build URL: 
https://ci.swift.org/job/oss-swift-incremental-RA-linux-ubuntu-15_10/8568/ 

   
  Project:  oss-swift-incremental-RA-linux-ubuntu-15_10 
   

   
  Date of   Wed, 02 Nov 2016 10:17:41 -0700 
   
   build:   
   

   
   Build25 min  
   
 duration:  
   

   

  Tests:



 Name: Swift(linux-x86_64)  
 Failed: 0 test(s), Passed: 8487 test(s), Total: 8487 test(s)   



 Name: Swift-Unit   
 Failed: 0 test(s), Passed: 299 test(s), Total: 299 test(s) 





  Changes
Commit 3575ee1954ea68f3d569c1f4481ca850d9fe87a3 by
practicalswift:


[swiftc (94 vs. 5180)] Add crasher in ?
  add:
  
validation-test/compiler_crashers/28463-child-source-range-not-contained-within-its-parent-guard-stmt.swift

___
swift-dev mailing list
swift-...@swift.org
https://lists.swift.org/mailman/listinfo/swift-dev

___
swift-corelibs-dev mailing list
swift-corelibs-dev@swift.org
https://l

Re: [swift-corelibs-dev] [swift-server-dev] Server APIs: networking and security kick-off meetings

2016-11-02 Thread Chris Bailey via swift-corelibs-dev
Based on current feedback, the schedule is looking like it will be:
Security:   Thursday 3rd:   6pm CET, 5pm UK, 12pm EST, 9am PST
Networking  Friday 4th: 6pm CET, 5pm UK, 12pm EST, 9am PST

If your interested in taking part, and haven't entered a preference into 
the polls, please do as soon as possible.

Chris




From:   Chris Bailey via swift-server-dev 
To: swift-server-...@swift.org, swift-corelibs-dev@swift.org
Date:   02/11/2016 15:09
Subject:[swift-server-dev] Server APIs: networking and security 
kick-offmeetings
Sent by:swift-server-dev-boun...@swift.org



In order to try to schedule kick-off meetings for the Server APIs focus 
areas, I've set up Doodle polls for the networking and security kick-offs, 
with the aim of trying to hold those this week: 
Server APIs: Networking sub-team kickoff
http://doodle.com/poll/b5vy7s8vs9pbcb7y 
Server APIs: Security sub-team kickoff
http://doodle.com/poll/6xc84g5kfgv3ebv5 
we'll follow up with the HTTP kick-off once we have these two scheduled. 

The Doodle poll lets you set what time(s) you'd be able to make a call - 
we'll use either Webex or Google Hangouts for the meeting, so you'll be 
able to use your network connection to take part. We won't be recording 
the call, but we will publish full agenda and minutes to GitHub 
afterwards. 

If you'd like to take part, but can't make any of the available times, 
fill in your name and select "Cannot make it". If there's enough people 
that cannot make it, we'll postpone to a later date. 

Chris___
swift-server-dev mailing list
swift-server-...@swift.org
https://lists.swift.org/mailman/listinfo/swift-server-dev


___
swift-corelibs-dev mailing list
swift-corelibs-dev@swift.org
https://lists.swift.org/mailman/listinfo/swift-corelibs-dev