Ubuntu Daily PPA Build Failure

General discussion regarding the OpenMW project.
For technical support, please use the Support subforum.
Tinker
Posts: 231
Joined: 06 Mar 2013, 17:35

Re: Ubuntu Daily PPA Build Failure

Post by Tinker »

Yes this is a different build, it is for the daily snapshot of the development version which will soon be the 0.35 version.
User avatar
raevol
Posts: 3093
Joined: 07 Aug 2011, 01:12
Location: Caldera

Re: Ubuntu Daily PPA Build Failure

Post by raevol »

Oh, that too. -_-
User avatar
raevol
Posts: 3093
Joined: 07 Aug 2011, 01:12
Location: Caldera

Re: Ubuntu Daily PPA Build Failure

Post by raevol »

This thread liiiiiives... is the Daily PPA busted again?
User avatar
raevol
Posts: 3093
Joined: 07 Aug 2011, 01:12
Location: Caldera

Re: Ubuntu Daily PPA Build Failure

Post by raevol »

Looks like we have another build failure?

Are these posts helpful or just annoying... :oops:
User avatar
psi29a
Posts: 5361
Joined: 29 Sep 2011, 10:13
Location: Belgium
Gitlab profile: https://gitlab.com/psi29a/
Contact:

Re: Ubuntu Daily PPA Build Failure

Post by psi29a »

Scott gets a bazillion emails when builds fail, so we know about it but it is useful that you post anyway for those who use it and don't know.
User avatar
raevol
Posts: 3093
Joined: 07 Aug 2011, 01:12
Location: Caldera

Re: Ubuntu Daily PPA Build Failure

Post by raevol »

Signal to noise ratio and all that. :D Thanks, I'll keep posting just for visibility for other peeps.
User avatar
NatalieN
Posts: 43
Joined: 30 Nov 2015, 21:32

Re: Ubuntu Daily PPA Build Failure

Post by NatalieN »

Looks like the daily ppa hasn't updated in about 6 weeks.
User avatar
psi29a
Posts: 5361
Joined: 29 Sep 2011, 10:13
Location: Belgium
Gitlab profile: https://gitlab.com/psi29a/
Contact:

Re: Ubuntu Daily PPA Build Failure

Post by psi29a »

Time to PM someone...
maqifrnswa
Posts: 180
Joined: 14 Jan 2013, 03:57

Re: Ubuntu Daily PPA Build Failure

Post by maqifrnswa »

psi29a wrote:Time to PM someone...
@psi29a: If this happens again, here's the code that is running as a cron script. It pushes git to the bzr repo, then uses launchpad's bzr build recipes to build the package. You can just run this yourself and it will do the same thing mine does.

I use keychain to store my ssh credentials for the cronjob, that's the first line.

Code: Select all

#!/bin/bash
source $HOME/.keychain/${HOSTNAME}-sh
bzr launchpad-login lp-username
bzr whoami "Name <[email protected]>"
cd /home/username/openmw/openmw
git pull origin master
git submodule update --init --recursive
HASH=$(git log --pretty=format:'%h' -n 1)
bzr stat -S|grep ^?|sed 's/^? //'| while read LINE; do bzr add "$LINE"; done
bzr ci -m "Cron update. Git hash: $HASH"
bzr push
/home/username/openmw/openmw is the git repo from github, which I also made a bzr repo so I can push it it to https://code.launchpad.net/~openmw/openmw/trunk

EDIT: they are building again!
User avatar
psi29a
Posts: 5361
Joined: 29 Sep 2011, 10:13
Location: Belgium
Gitlab profile: https://gitlab.com/psi29a/
Contact:

Re: Ubuntu Daily PPA Build Failure

Post by psi29a »

Cheers,

thanks for this. :)
Post Reply