From owner-freebsd-testing@freebsd.org Sun Jan 10 19:00:33 2016 Return-Path: Delivered-To: freebsd-testing@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 393DEA6AFA4; Sun, 10 Jan 2016 19:00:33 +0000 (UTC) (envelope-from crodr001@gmail.com) Received: from mail-ig0-x22b.google.com (mail-ig0-x22b.google.com [IPv6:2607:f8b0:4001:c05::22b]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 01C4F1AE6; Sun, 10 Jan 2016 19:00:33 +0000 (UTC) (envelope-from crodr001@gmail.com) Received: by mail-ig0-x22b.google.com with SMTP id z14so88084965igp.1; Sun, 10 Jan 2016 11:00:32 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:date:message-id:subject:from:to:cc:content-type; bh=ML5gTmFyCUBZvPzHdlab2Ebtmb66QLBEV9leHBeINCE=; b=Gqvr5z87+lEGzX9eu7rGVLPTecAspUmUa3Xo9HWK4vgQqRAfhuV4wnjlZo6LWaGuAf 0JiUa6f9z6Sh9A6DJ1rIJ2/PiKgknIevnPTu53E7oIZrGR4HHROjZbB9Zeb+upww4pE0 tK1nTJ7vQD+9ve7Knq2GeMC1DZ4mC5QaUPxYl/E5rJ1fnfEM6gtjKDT4+ubBz2H3wFV9 /oL95xWPznsrr3aqSFeP2tMcmL3PHFPFoisZhx1ewcxTrcWTs51r9rtU8YWAYgt23T+U pCGVLocRRCPKMCrMDwLdMK8uws4VjOnV9jlghstG5OHH8HK93x0X0sXq8Gykw8u9JDWM NtSA== MIME-Version: 1.0 X-Received: by 10.50.147.73 with SMTP id ti9mr7828786igb.36.1452452432407; Sun, 10 Jan 2016 11:00:32 -0800 (PST) Sender: crodr001@gmail.com Received: by 10.50.152.69 with HTTP; Sun, 10 Jan 2016 11:00:32 -0800 (PST) Date: Sun, 10 Jan 2016 14:00:32 -0500 X-Google-Sender-Auth: NL_sM9nfK5UL0haWbb1G2txITkY Message-ID: Subject: Need Groovy help for Jenkins script to build/run/test FreeBSD image From: Craig Rodrigues To: "freebsd-testing@freebsd.org" Cc: "freebsd-java@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-testing@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Testing on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Jan 2016 19:00:33 -0000 Hi, I am making some serious efforts to convert my existing Jenkins jobs to use the Jenkins workflow plugin, because that is what the developers who work on Jenkins are moving towards. The Jenkins workflow plugin, which has a small Groovy-based Domain Specific Language (DSL): https://github.com/jenkinsci/workflow-plugin#getting-started My first attempt is here: https://github.com/freebsd/freebsd-ci/blob/master/scripts/build/build-test.groovy The script calls several helper scripts, but overall what it is trying to do is: 1. Builds the FreeBSD src tree. 2. Run the Warnings plugin over the compiler output to detect warnings 3. Creates a VM disk image which can boot in bhyve. 4. Boots the VM disk image in bhyve 5. Runs the FreeBSD test suite in the VM 6. Take the JUnit test output and add it to the test report viewer Sample output from this script which builds FreeBSD_HEAD is here: https://jenkins.freebsd.org/job/FreeBSD_HEAD/40/flowGraphTable/ This is my first attempt at writing Groovy. I looked at http://groovy-lang.org to get some basic ideas. Can someone point me to good books or tutorials for learning Groovy? Also, can someone review my script and provide feedback, on any obvious things I have done wrong, or any possible ways to optimize it? Providing feedback via this e-mail thread or on GitHub is fine. Thanks. -- Craig From owner-freebsd-testing@freebsd.org Sat Jan 16 02:45:40 2016 Return-Path: Delivered-To: freebsd-testing@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1E23FA825B4 for ; Sat, 16 Jan 2016 02:45:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E8F0C1AD3 for ; Sat, 16 Jan 2016 02:45:39 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0G2jd3M090021 for ; Sat, 16 Jan 2016 02:45:39 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-testing@freebsd.org Subject: [Bug 206302] tools/regression/sockets/listenclose fails with EINPROGRESS on gcc 4.9.4/5.3.0, but not clang 3.7.1/gcc 4.2.1 Date: Sat, 16 Jan 2016 02:45:40 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: tests X-Bugzilla-Version: 10.2-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: ngie@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-testing@freebsd.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-testing@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Testing on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Jan 2016 02:45:40 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D206302 Bug ID: 206302 Summary: tools/regression/sockets/listenclose fails with EINPROGRESS on gcc 4.9.4/5.3.0, but not clang 3.7.1/gcc 4.2.1 Product: Base System Version: 10.2-STABLE Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: tests Assignee: freebsd-testing@freebsd.org Reporter: ngie@FreeBSD.org The tools/regression/sockets/listenclose testcase fails with EINPROGRESS on= gcc 4.9.4/5.3.0, but not clang 3.7.1 or gcc 4.2.1. $ bash -c 'for cc in cc gcc gcc49 gcc5; do make -s clean; export CC=3D$cc; = make -s; $cc --version; ./listenclose; done' FreeBSD clang version 3.7.1 (tags/RELEASE_371/final 255217) 20151225 Target: x86_64-unknown-freebsd11.0 Thread model: posix gcc (GCC) 4.2.1 20070831 patched [FreeBSD] Copyright (C) 2007 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. gcc49 (FreeBSD Ports Collection) 4.9.4 20151230 (prerelease) Copyright (C) 2015 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. listenclose: connect() for connect socket: Operation now in progress gcc5 (FreeBSD Ports Collection) 5.3.0 Copyright (C) 2015 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. listenclose: connect() for connect socket: Operation now in progress --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-testing@freebsd.org Sat Jan 16 13:41:18 2016 Return-Path: Delivered-To: freebsd-testing@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D87B1A84BC1 for ; Sat, 16 Jan 2016 13:41:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C83121BE1 for ; Sat, 16 Jan 2016 13:41:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0GDfIIP053788 for ; Sat, 16 Jan 2016 13:41:18 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-testing@freebsd.org Subject: [Bug 201072] /etc/mtree/BSD.include.dist and /etc/mtree/BSD.usr.dist create various atf directories that are later deleted by 'make delete-old' Date: Sat, 16 Jan 2016 13:41:18 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.1-STABLE X-Bugzilla-Keywords: easy, needs-patch, needs-qa, patch, regression X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: 000.fbsd@quip.cz X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-testing@freebsd.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-testing@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Testing on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Jan 2016 13:41:18 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D201072 Miroslav Lachman <000.fbsd@quip.cz> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |000.fbsd@quip.cz --- Comment #9 from Miroslav Lachman <000.fbsd@quip.cz> --- Is this issue fixable or will it be there forever? It is not a major issue but it is really annoying. I did installworld (secu= rity update) three times in one week and those directories were created and dele= ted again and again. FreeBSD 10.2-RELEASE-p10 amd64 GENERIC https://lists.freebsd.org/pipermail/freebsd-stable/2016-January/083973.html --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-testing@freebsd.org Sat Jan 16 13:51:59 2016 Return-Path: Delivered-To: freebsd-testing@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 32A93A850CE for ; Sat, 16 Jan 2016 13:51:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 20AF11244 for ; Sat, 16 Jan 2016 13:51:59 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u0GDpwlm090489 for ; Sat, 16 Jan 2016 13:51:58 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-testing@freebsd.org Subject: [Bug 201072] /etc/mtree/BSD.include.dist and /etc/mtree/BSD.usr.dist create various atf directories that are later deleted by 'make delete-old' Date: Sat, 16 Jan 2016 13:51:59 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: misc X-Bugzilla-Version: 10.1-STABLE X-Bugzilla-Keywords: easy, needs-qa, patch, regression X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: koobs@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-testing@freebsd.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-testing@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Testing on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Jan 2016 13:51:59 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D201072 Kubilay Kocak changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords|needs-patch | --=20 You are receiving this mail because: You are the assignee for the bug.=