[swift-dev] [Swift CI] Build Failure: OSS - Swift Package - OS X (swift 4.1) #389

2017-12-20 Thread swift-ci--- via swift-dev
Title: Report [FAILURE] oss-swift-4.1-package-osx [#389] Build URL:https://ci.swift.org/job/oss-swift-4.1-package-osx/389/ Project:oss-swift-4.1-package-osx Date of build:Tue, 19 Dec 2017 22:43:13 -0600 Build duration:4 hr 35 min Changes Commit 5e

[swift-dev] [Swift CI] Build Failure: 1. OSS - Swift (Tools Opt+Assert, Stdlib Opt+DebInfo+Assert, Resilience) - macOS (master) #143

2017-12-20 Thread swift-ci--- via swift-dev
Title: Report [FAILURE] oss-swift_tools-RA_stdlib-RDA_test-macos-resilience [#143] Build URL:https://ci.swift.org/job/oss-swift_tools-RA_stdlib-RDA_test-macos-resilience/143/ Project:oss-swift_tools-RA_stdlib-RDA_test-macos-resilience Date of build:Wed, 20 Dec 2017 03:47:00 -

[swift-dev] Swift CI "auto retry"?

2017-12-20 Thread David Zarzycki via swift-dev
Is there any way to get Swift CI to automatically retry a “[smoke] test and merge” after master starts building/testing successfully again? Failing that, is anybody looking into the ":0: error: unexpected warning produced: argument unused during compilation: '-mtvos-simulator-version-min=9.0.0’

Re: [swift-dev] Swift CI "auto retry"?

2017-12-20 Thread Arnold Schwaighofer via swift-dev
This is caused by clang change 1ac71826854a809f67ae15ddacaaa9a6eb8189e8. This change was reverted on swift-4.1-branch. Merging clang's swift-4.1-branch into stable is blocked by another error that we can also see here: https://ci.swift.org/job/swift-PR-osx/2060/consoleFull#-12191974833122a513-f3

Re: [swift-dev] [swift-lldb-dev] Switching swift to C++14

2017-12-20 Thread David Zarzycki via swift-dev
> On Dec 19, 2017, at 17:44, Adrian Prantl via swift-dev > wrote: > > I am still hoping that one day we could retire build-script and just throw > swift into llvm/tools, so it can be built in parallel with llvm and clang by > the same ninja invocation. You can build that way if you want, al

Re: [swift-dev] Swift CI "auto retry"?

2017-12-20 Thread Jordan Rose via swift-dev
> On Dec 20, 2017, at 08:04, Arnold Schwaighofer via swift-dev > wrote: > > This is caused by clang change 1ac71826854a809f67ae15ddacaaa9a6eb8189e8. > > This change was reverted on swift-4.1-branch. Merging clang's > swift-4.1-branch into stable is blocked by another error that we can also s

[swift-dev] Swift Infrastructure Holiday Schedule

2017-12-20 Thread Nicole Jacque via swift-dev
In the next couple weeks, most of the people who do the day to day maintenance of the continuous integration bots and infrastructure will be on vacation in observance of the various (US) winter holidays. In order to keep the builds stable while the maintainers are out on break, we will be obser

Re: [swift-dev] [Swift CI] Build Failure: 0. OSS - Swift Incremental RA - Ubuntu 16.10 (swift 4.1) #488

2017-12-20 Thread Alex Lorenz via swift-dev
This does not look related to my cherry-pick. Cheers, Alex > On Dec 20, 2017, at 1:58 PM, swift...@swift.org wrote: > > [FAILURE] oss-swift-4.1-incremental-RA-linux-ubuntu-16_10 [#488] > > Build URL: > https://ci.swift.org/job/oss-swift-4.1-incremental-RA-linux-ubuntu-16_10/488/ >

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

2017-12-20 Thread Michael Ilseman via swift-dev
Clack: fatal error: error in backend: IO failure on output stream: No space left on device > On Dec 20, 2017, at 1:12 PM, swift...@swift.org wrote: > > [FAILURE] oss-swift-incremental-RA-linux-ubuntu-16_10 [#2084] > > Build URL: > https://ci.swift.org/job/oss-swift-incremental-RA-linux-u

Re: [swift-dev] [Swift CI] Build Failure: 0. OSS - Swift Incremental RA - Ubuntu 16.10 (swift 4.1) #488

2017-12-20 Thread Michael Ilseman via swift-dev
Clack: FATAL: Unable to produce a script file java.io.IOException: No space left on device > On Dec 20, 2017, at 1:59 PM, Alex Lorenz wrote: > > This does not look related to my cherry-pick. > > Cheers, > Alex > >> On Dec 20, 2017, at 1:58 PM, swift...@swift.org

Re: [swift-dev] [Swift CI] Build Failure: 0. OSS - Swift Incremental RA - Ubuntu 16.10 (swift 4.1) #488

2017-12-20 Thread clack via swift-dev
Building remotely on ubuntu-16.10-03 (Ubuntu-16.10 executors-4) in workspace /home/buildnode/jenkins/workspace/oss-swift-4.1-incremental-RA-linux-ubuntu-16_10 [WS-CLEANUP] Deleting project workspace... [WS-CLEANUP] Done Strange, I've never seen th

Re: [swift-dev] [Swift CI] Build Failure: 0. OSS - Swift Incremental RA - Ubuntu 16.10 - Long Test (master) #828

2017-12-20 Thread Michael Ilseman via swift-dev
Clack, another one: FATAL: Unable to produce a script file java.io.IOException: No space left on device at java.io.UnixFileSystem.createFileExclusively(Native Method) “java.io.UnixFileSystem.createFileExclusively”: The law of exclusivity strikes again! :-) > On Dec 20, 2017, at 2:54 P

Re: [swift-dev] Protocol Devirtualizer Pass

2017-12-20 Thread Raj Barik via swift-dev
Thank you Arnold & Slava! The protocol devirtualizer pass works fine now for most cases. I should be creating a PR soon (after some more testing). I am thinking about extending this to Optional types as well, i.e., @inline(never) internal func wrap_inc_optional(a:SumProtocol?, val:Int) -> Int?{

Re: [swift-dev] How to run Swift on Windows

2017-12-20 Thread Eric Wing via swift-dev
> > git clone https://github.com/apple/swift.git > cd swift > git checkout swift-4.0.2-RELEASE > patch -p1 < swift.patch > cd .. I'm having trouble applying the patches. I think it is due to the Windows line endings. Is there an easy way to work around this to apply the patches? __

Re: [swift-dev] Protocol Devirtualizer Pass

2017-12-20 Thread Slava Pestov via swift-dev
> On Dec 20, 2017, at 3:56 PM, Raj Barik wrote: > > Thank you Arnold & Slava! The protocol devirtualizer pass works fine now for > most cases. I should be creating a PR soon (after some more testing). > > I am thinking about extending this to Optional types as well, i.e., I’m not sure if it

Re: [swift-dev] [swift-lldb-dev] Switching swift to C++14

2017-12-20 Thread Ted Kremenek via swift-dev
On Dec 19, 2017, 8:33 PM -0800, Ted Kremenek via swift-dev , wrote: > > > On Dec 19, 2017, at 5:08 PM, Saleem Abdulrasool wrote: > > > > > > > > On Dec 19, 2017, at 3:59 PM, Ted Kremenek wrote: > > > > > > > > > > > > > On Dec 19, 2017, at 2:31 PM, Daniel Dunbar > > > > wrote: > > > > > > > >