[swift-dev] Cross Repository Testing with Swift CI

2016-09-08 Thread mishal_shah via swift-dev
Cross Repository Testing with Swift CI Swift CI now supports the ability to test multiple pull request across repositories. To use this new feature, simply provide the URL from corresponding pull requests in the same comment as "@swift-ci Please test" phrase. List all of the pull requests and th

Re: [swift-dev] Xcode 8 GM: Compiler segfaults on ExpressibleByArrayLiteral

2016-09-08 Thread Ole Begemann via swift-dev
FWIW, it’s actually fixed in master (probably due to Slava’s recent work on the generics system). The primary benefit to filing a radar at this point is that you’ll get notified when the fix makes it into an Xcode release. Thanks. I'll just wait then. :-) _

Re: [swift-dev] Update: CI outage for SDK and source updates tomorrow

2016-09-08 Thread mishal_shah via swift-dev
Update completed. Thanks, Mishal Shah > On Sep 8, 2016, at 9:41 AM, mishal_shah wrote: > > Reminder: > > Starting update right now. > > During this update, please don’t trigger pull request testing on GitHub. > > Thanks, > Mishal Shah >> On Sep 7, 2016, at 3:17 PM, Nicole Jacque via swi

Re: [swift-dev] Xcode 8 GM: Compiler segfaults on ExpressibleByArrayLiteral

2016-09-08 Thread Douglas Gregor via swift-dev
> On Sep 8, 2016, at 6:50 AM, Ole Begemann via swift-dev > wrote: > > I'm seeing a segmentation fault when compiling this code with Xcode 8 GM: > > ``` > // stack.swift > struct Stack { >var elements: [Element] = [] > } > > extension Stack: ExpressibleByArrayLiteral { >init(arrayLiter

Re: [swift-dev] Compile an old version of Swift from source

2016-09-08 Thread Jordan Rose via swift-dev
There should be for the actual releases and Apple-released previews. I see a swift-2.2.1-RELEASE tag in both swift-llvm and swift. Note that SwiftPM and the corelibs version of libdispatch were not part of the Swift 2.2 release. Jordan > On Sep 7, 2016, at 15:30, Daniel Martín via swift-dev

Re: [swift-dev] Xcode 8 GM: Compiler segfaults on ExpressibleByArrayLiteral

2016-09-08 Thread Jordan Rose via swift-dev
Since it's just about the Swift compiler and types found entirely in the standard library, you can be confident about bugs.swift.org. (It's a bit more of a mix when there's system APIs involved: sometimes that's the compiler and sometimes it's the SDK. But this one doesn't go there.) Thanks, Ol

Re: [swift-dev] Update: CI outage for SDK and source updates tomorrow

2016-09-08 Thread mishal_shah via swift-dev
Reminder: Starting update right now. During this update, please don’t trigger pull request testing on GitHub. Thanks, Mishal Shah > On Sep 7, 2016, at 3:17 PM, Nicole Jacque via swift-dev > wrote: > > The CI update is being rescheduled for 9 AM, California time tomorrow. > >> On Sep 7, 2

[swift-dev] Compile an old version of Swift from source

2016-09-08 Thread Daniel Martín via swift-dev
What's the easiest way to compile a 2.2.x version of Swift from source? AFAIK there's no clear way to know which ref you have to checkout from Swift dependency repos, like LLVM or Swift-Clang, because there's not a standard tag naming for release versions across repositories. Thank you, Daniel

Re: [swift-dev] Advice on adding PGO support

2016-09-08 Thread Vedant Kumar via swift-dev
Hi Erik, Thanks for your advice! > On Sep 7, 2016, at 12:53 PM, Erik Eckstein wrote: > > Hi Vedant, > > nice work! > >> On Sep 6, 2016, at 12:36 PM, Vedant Kumar via swift-dev >> wrote: >> >> Hi swift-dev, >> >> I've been working on some patches which add basic support for PGO to swift >

Re: [swift-dev] Code reformatting the swift-lldb repo, master and master-next branches [COMPLETE]

2016-09-08 Thread Todd Fiala via swift-dev
Hi all, I have wrapped up the code reformatting operation for the swift-lldb master and master-next repositories. Of note: * The integration of upstream LLVM.org LLDB svn trunk bits into the swift-lldb/master-next branch happens by way of the swift-lldb/upstream branch. Th

[swift-dev] Xcode 8 GM: Compiler segfaults on ExpressibleByArrayLiteral

2016-09-08 Thread Ole Begemann via swift-dev
I'm seeing a segmentation fault when compiling this code with Xcode 8 GM: ``` // stack.swift struct Stack { var elements: [Element] = [] } extension Stack: ExpressibleByArrayLiteral { init(arrayLiteral elements: Element...) { self.elements = elements } } ``` --- This is my