Return-Path: Received: from smtp1.linuxfoundation.org (smtp1.linux-foundation.org [172.17.192.35]) by mail.linuxfoundation.org (Postfix) with ESMTPS id C71701120 for ; Sun, 27 Sep 2015 08:37:57 +0000 (UTC) X-Greylist: whitelisted by SQLgrey-1.7.6 Received: from mail-ig0-f177.google.com (mail-ig0-f177.google.com [209.85.213.177]) by smtp1.linuxfoundation.org (Postfix) with ESMTPS id CA00EE9 for ; Sun, 27 Sep 2015 08:37:56 +0000 (UTC) Received: by igbkq10 with SMTP id kq10so37362820igb.0 for ; Sun, 27 Sep 2015 01:37:56 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:from:date:message-id:subject:to :content-type; bh=7f8jnvAMAkahpLq59UiUWUH0sMaqkYUxs5YJDxd5hOY=; b=XeliaKzUKI3drgXrzVaO5apSCyQXaOjNO4yssQhH6NoPiaijJxS4X2gsAAgqsEoqLi m9Keamy2GJwPFnNQDrTxyOxCPdGb40LrmhhNHeAtwk6f8gkAEjo/6Ag/eE2iAA2fVpx5 fnuMbpoqMNzW8HVpV8DOEjWFH/ANoAU84RtJS0+NqnBnnUJvFaGduhfp4aXMTbqlPZvj 8+3zAsUsuuotxRl+652DLGBUVvAFecF3IeYcvMVoTR0ZKB4fNNqI0nnBgO9nA0SNrRSj vrU1hoEMNV8cJwH6+VUJ9W/2bKu2FLUsOpiPF73Kji+SetBuTI8Wcrr0qDTmqMxomIB3 B/7w== X-Gm-Message-State: ALoCoQnMTllxs1dCvWnxx70G3cWeJ+RF73I3hCvxwXoeF1fQxHGEGCwuGkWXVogsar13y6uPD2b7 X-Received: by 10.50.2.39 with SMTP id 7mr9298058igr.86.1443343075888; Sun, 27 Sep 2015 01:37:55 -0700 (PDT) MIME-Version: 1.0 Received: by 10.107.25.75 with HTTP; Sun, 27 Sep 2015 01:37:36 -0700 (PDT) From: Roy Osherove Date: Sun, 27 Sep 2015 01:37:36 -0700 Message-ID: To: Bitcoin Dev Content-Type: multipart/alternative; boundary=e89a8f642bd853ef930520b67f9a X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,HTML_MESSAGE, RCVD_IN_DNSWL_LOW,WEIRD_PORT autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on smtp1.linux-foundation.org Subject: [bitcoin-dev] Build: win64: Package 'mingw-w64-dev' has no installation candidate X-BeenThere: bitcoin-dev@lists.linuxfoundation.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Bitcoin Development Discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Sep 2015 08:37:57 -0000 --e89a8f642bd853ef930520b67f9a Content-Type: text/plain; charset=UTF-8 Hi All As part of trying to learn more about the bitcoin builds, I am trying to recreate the travis CI build system using TeamCity. Some of the builds work fine, but the windows builds seem to be having a problem with getting mingw dev: [08:31:21][Step 3/3] E: Package 'mingw-w64-dev' has no installation candidate I'm using the same exports env vars as the travis script, and actually using the travis script inside teamcity , incuding adding the PPA for the mingw packages. The PPA seems to be importing fine during the build: [Step 3/3] gpg: keyring `/tmp/tmp_nolyfrh/secring.gpg' created [08:30:48][Step 3/3] gpg: keyring `/tmp/tmp_nolyfrh/pubring.gpg' created [08:30:48][Step 3/3] gpg: requesting key F9CB8DB0 from hkp server keyserver.ubuntu.com [08:30:48][Step 3/3] gpg: /tmp/tmp_nolyfrh/trustdb.gpg: trustdb created [08:30:48][Step 3/3] gpg: key F9CB8DB0: public key "Launchpad PPA for Ubuntu Wine Team" imported [08:30:48][Step 3/3] gpg: no ultimately trusted keys found [08:30:48][Step 3/3] gpg: Total number processed: 1 [08:30:48][Step 3/3] gpg: imported: 1 (RSA: 1) Any ideas why this seems to be working on travis and not on the teamcity build agent? The agent is running inside docker image based on ubuntu. The full log of the failed build can be found at : http://btcdev.osherove.com:8111/viewLog.html?tab=buildLog&buildTypeId=Bitcoin_BuildWin64&buildId=332#_state=103&focus=242 same problem appears in win32 build. there are the env vars: NameValue passed to buildenv.BASE_OUTDIR%system.teamcity.build.checkoutDir% env.BITCOIN_CONFIG--enable-gui --enable-reduce-exportsenv.BOOST_TEST_RANDOM %build.number%env.CCACHE_COMPRESS1env.CCACHE_SIZE100Menv.CCACHE_TEMPDIR /tmp/.ccache-tempenv.GOALdeployenv.HOSTx86_64-w64-mingw32env.MAKEJOBS-j2 env.PACKAGESnsis gcc-mingw-w64-x86-64 g++-mingw-w64-x86-64 binutils-mingw-w64-x86-64 mingw-w64-dev wine1.7 bcenv.PPAppa:ubuntu-wine/ppa env.PYTHON_DEBUG1env.RUN_TESTStrueenv.SDK_URL https://bitcoincore.org/depends-sources/sdksenv.WINEDEBUG -- Thanks, Roy Osherove - *@RoyOsherove* - Read my new book *Notes to a Software Team Leader * - Or *my new course* about Beautiful Builds and Continuous Delivery - +1-201-256-5575 - Timezone: Eastern Standard Time (New York) --e89a8f642bd853ef930520b67f9a Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
Hi All
As part of trying to learn more about the bitco= in builds, I am trying to recreate the travis CI build system using TeamCit= y.
Some of the builds work fine, but the windows builds seem to b= e having a problem with getting mingw dev:

[08:31:2= 1][Step 3/3] E: Package 'mingw-w64-dev' has no installat= ion candidate

I'm using the same exports = env vars as the travis script, and actually using the travis script inside = teamcity , incuding adding the PPA for the mingw packages.

The PPA seems to be importing fine during the build:
[Step 3/3] gpg: ke= yring `/tmp/tmp_nolyfrh/secring.gpg' created
[= 08:30:48][Step 3/3] gpg: keyring `/tmp/tmp_nolyfrh/pubring.gpg&#= 39; created
[08:30:48][Step 3/3] gpg: re= questing key F9CB8DB0 from hkp server keyserver.ubuntu.com
[08:30:48][Step 3/3= ] gpg: /tmp/tmp_nolyfrh/trustdb.gpg: trustdb created
[08:30:48][Step 3/3] gpg: key F9CB8DB0: public key &qu= ot;Launchpad PPA for Ubuntu Wine Team" imported
[08:30:48]<= span class=3D"">[Step 3/3] gpg: no ultimately trusted keys found
[08:30:48][Step 3/3] gpg: Total number proc= essed: 1
[08:30:48][Step 3/3] gpg: = imported: 1 (RSA: 1)

Any ideas why this seem= s to be working on travis and not on the teamcity build agent?
Th= e agent is running inside =C2=A0docker image based on ubuntu.
The full log of the failed build can be found at :
http://btcdev.osherove.com:8111/viewLog.html?tab=3DbuildLog&buildTy= peId=3DBitcoin_BuildWin64&buildId=3D332#_state=3D103&focus=3D242

same problem appears in win32 build.
there are the env vars:

<= tbody>= env.PACKAGES<= td class=3D"" style=3D"padding:2px;border-top-width:1px;border-top-style:do= tted;border-top-color:rgb(204,204,204);vertical-align:top;border-right-styl= e:none;color:rgb(21,21,21);font-family:'Helvetica Neue',Arial,sans-= serif;font-size:13.12px;line-height:19.68px">env.WINEDEBUG

Nam= eValue passed to bui= ld
env.BASE_OUTDIR%system.teamcity.build.checkoutDir%
env.BITCOIN_CONFIG--enable-gui --enable-reduce-exports
env.BOOST_TEST_RANDOM%build.number%
env.CCA= CHE_COMPRESS1
env.CCACHE_SIZE100M
env.CCA= CHE_TEMPDIR/tmp/.ccache-temp
env.GOALdeploy
env.HOSTx86_64-w64-mingw32
env.MAKEJOBS-j2
nsis gcc-mingw-w64-x86-64 g++-mingw-w64-x86-64 binutils-mingw= -w64-x86-64 mingw-w64-dev wine1.7 bc
env.PPAppa:ubuntu-win= e/ppa
env.PYTHON_DEBUG1
env.RUN_TES= TStru= e
env.SDK_URLhttps://bitcoincore.org/depends-sources/sdks
--
Thanks,

Roy Osherove<= br>
=C2=A0=C2=A0 - @RoyOsherove
=C2=A0 =C2=A0- Read my new book Notes to a Software Tea= m Leader
=C2=A0 =C2=A0- Or my new course about Beautiful Builds = and Continuous Delivery
=C2=A0 =C2=A0- +1-201-256-5575 =C2=A0
= =C2=A0 =C2=A0 - Timezone: Eastern Standard Time (New York)


--e89a8f642bd853ef930520b67f9a--