Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:104022 Return-Path: Delivered-To: mailing list internals@lists.php.net Received: (qmail 43732 invoked from network); 2 Feb 2019 16:51:26 -0000 Received: from unknown (HELO mail-io1-f48.google.com) (209.85.166.48) by pb1.pair.com with SMTP; 2 Feb 2019 16:51:26 -0000 Received: by mail-io1-f48.google.com with SMTP id k7so8196232iob.6 for ; Sat, 02 Feb 2019 05:31:49 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=VGQeIOAfmF9/AIx1E+3eS7Fnc2Yzy1lv2p9WNJRip2k=; b=GowiuDBqpJZCAwfW6PCTimiXz/YooL1bCdjsnVpEo2aVU4ME1lxOxDpgKVfBnobfRZ b33vbeePANFddHbmKvsnlf9lmes37yaqeooaZ7kJtFCi8FSlklPgybovADSZA5fmwHhW t3+F4bQ92WONe00yaizrtmStON3t22Yb7lFZFajDyHztpVxj1LUW8zGuPdVR3zzV1eli jMrbE0HB0lhPgww/VnH8ayTlnnIlgYWjTVGVh1tQP36tiTNVMgdePx7L1ZbNOm+qW49x TlwIr6pdcu3w50go9BHN710SZf5ikv8uBJIc59vqvTUELi4hHEjgp9u9INMcv28Obzq1 en/Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=VGQeIOAfmF9/AIx1E+3eS7Fnc2Yzy1lv2p9WNJRip2k=; b=Jp2uMTlEFS9T3FlAWLLT7egkMruGvoMQfJScJPZdiR3isQ1tSSCRVfFQ+qVY2eqd5p p4MWhH21TSsv8F49Mb9/uYcGRblmrhY8PumilHz+iXWanAQG6XTh5xGqq1+kuHrTsDcb HJDCGxHDlPIM/YVdH4TQEDDH33yC3sy7t5FnHDea0+45YurAtsgEmAuHYekmfNmOn9+d Z68TaJyDgxPlUhlT0+7Zc0VGbvnFthvpW3IL2CjdgeRgxNSq5iHyBsijQlU5Ll/zl1nc 2upZNIhjd3EwxBwqiDZz/bdc2JIBxlRDnGy0M7tjHUVqDcJ8/dp5mN5R52WmKYdnBLj+ eiRw== X-Gm-Message-State: AHQUAuZpY5RtsgBMShzaCfFhHuT0zF+Xbp1zw58YhnkHiizlsWFLFuoK zkrfzuiO6Ke1ellctNanns7K2BKtdbZPcTX/tMo= X-Google-Smtp-Source: AHgI3Ib72cEGlMXRUJhqb+3ecYstDq7dsKr6MM6f7V/AGCD4/f6FtA3Hz22r0N9HCKm9okmkgyN4DJMXJdlQAR4mRgc= X-Received: by 2002:a5e:dd0c:: with SMTP id t12mr8303521iop.258.1549114308884; Sat, 02 Feb 2019 05:31:48 -0800 (PST) MIME-Version: 1.0 References: <6dd8f281-4261-e096-3416-c7d7911e2201@gmx.de> In-Reply-To: <6dd8f281-4261-e096-3416-c7d7911e2201@gmx.de> Date: Sat, 2 Feb 2019 14:31:31 +0100 Message-ID: To: "Christoph M. Becker" Cc: PHP internals Content-Type: multipart/alternative; boundary="00000000000018fce70580e94887" Subject: Re: AppVeyor timeouts -- Migrate to Azure Pipelines? From: nikita.ppv@gmail.com (Nikita Popov) --00000000000018fce70580e94887 Content-Type: text/plain; charset="UTF-8" On Sat, Feb 2, 2019 at 2:06 PM Christoph M. Becker wrote: > On 02.02.2019 at 13:18, Nikita Popov wrote: > > > Since some time ago (not sure how long) our AppVeyor builds have been > > timing out more often than not, to the point that I've started ignoring > > failing AppVeyor builds entirely. > > Indeed, this is particularly annoying for RMs. > > > I just learned about the Azure Pipelines ( > > https://azure.microsoft.com/en-us/services/devops/pipelines/) offering, > > which offers open source projects 10 parallel builds with unlimited > > minutes. Assuming there's no other catch here, it might be worthwhile to > > migrate our Windows CI jobs to Azure Pipelines. > > An alternative to consider is using Travis for Windows CI[1], too. > It's an option, but I think we're generally better off using multiple CI platforms to increase the number of parallel builds we get. Next to the builds we already have, I think it would be very good to also have a macos builder (this is supported by both Travis and Azure Pipelines, but needs someone familiar with the platform to set things up) and a 32-bit builder (probably a -m32 build on x86_64 Linux). That would bring us to a total of six builds, which would probably make the Travis queue somewhat slow if we used it exclusively. Nikita --00000000000018fce70580e94887--