Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 4B5C4200D34 for ; Fri, 20 Oct 2017 01:01:08 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 49E7A160BEC; Thu, 19 Oct 2017 23:01:08 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 918881609EE for ; Fri, 20 Oct 2017 01:01:07 +0200 (CEST) Received: (qmail 98091 invoked by uid 500); 19 Oct 2017 23:01:06 -0000 Mailing-List: contact commits-help@beam.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@beam.apache.org Delivered-To: mailing list commits@beam.apache.org Received: (qmail 98082 invoked by uid 99); 19 Oct 2017 23:01:06 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 19 Oct 2017 23:01:06 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id 020C71A34B4 for ; Thu, 19 Oct 2017 23:01:06 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -99.201 X-Spam-Level: X-Spam-Status: No, score=-99.201 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id Wr3P4vSa9GGA for ; Thu, 19 Oct 2017 23:01:01 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id E10FC5F3DE for ; Thu, 19 Oct 2017 23:01:00 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 5D594E061F for ; Thu, 19 Oct 2017 23:01:00 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 150DE21EE2 for ; Thu, 19 Oct 2017 23:01:00 +0000 (UTC) Date: Thu, 19 Oct 2017 23:01:00 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: commits@beam.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (BEAM-3066) Jenkins seed job should be resilient and independent of other jobs' configurations MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Thu, 19 Oct 2017 23:01:08 -0000 [ https://issues.apache.org/jira/browse/BEAM-3066?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16211893#comment-16211893 ] ASF GitHub Bot commented on BEAM-3066: -------------------------------------- GitHub user kennknowles opened a pull request: https://github.com/apache/beam/pull/4019 [BEAM-3066] Make the main seed job standalone Follow this checklist to help us incorporate your contribution quickly and easily: - [ ] Make sure there is a [JIRA issue](https://issues.apache.org/jira/projects/BEAM/issues/) filed for the change (usually before you start working on it). Trivial changes like typos do not require a JIRA issue. Your pull request should address just this issue, without pulling in other changes. - [ ] Each commit in the pull request should have a meaningful subject line and body. - [ ] Format the pull request title like `[BEAM-XXX] Fixes bug in ApproximateQuantiles`, where you replace `BEAM-XXX` with the appropriate JIRA issue. - [ ] Write a pull request description that is detailed enough to understand what the pull request does, how, and why. - [ ] Run `mvn clean verify` to make sure basic checks pass. A more thorough check will be performed on your pull request automatically. - [ ] If this contribution is large, please file an Apache [Individual Contributor License Agreement](https://www.apache.org/licenses/icla.pdf). --- R: @jasonkuster This is a follow-up to #4004. That PR added a standalone seed job that would continue to work even if I screwed up the main seed job. But if I understand correctly, the "standalone seed job" does not have permissions to create new jobs. I didn't realize this at the time, but either way my plan would be mostly unchanged. The standalone job did succeed, so it has the power to restore existing jobs if not to create new ones. This switches the main seed job to have the same contents, leaving the standalone job as a backup so we can restore easily. The end goal is this: we "never" touch the seed job again, and no tweaking of other jobs can affect it. Then we can start to improve them safely. You can merge this pull request into a Git repository by running: $ git pull https://github.com/kennknowles/beam seed-job-swap Alternatively you can review and apply these changes as the patch at: https://github.com/apache/beam/pull/4019.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #4019 ---- commit 987eb53977a9f47efa2ad6fdd58dc9611779c2fc Author: Kenneth Knowles Date: 2017-10-19T22:55:03Z Make the main seed job standalone ---- > Jenkins seed job should be resilient and independent of other jobs' configurations > ---------------------------------------------------------------------------------- > > Key: BEAM-3066 > URL: https://issues.apache.org/jira/browse/BEAM-3066 > Project: Beam > Issue Type: Improvement > Components: testing > Reporter: Kenneth Knowles > Assignee: Kenneth Knowles > -- This message was sent by Atlassian JIRA (v6.4.14#64029)