branches with status:
Name Status Last Modified Last Commit
lp:~doanac/uci-engine/runner-refactor (Has a merge proposal) 1 Development 2014-07-10 16:36:36 UTC
665. test-runner: simplify run-worker code...

Author: Andy Doan
Revision Date: 2014-07-10 16:34:36 UTC

test-runner: simplify run-worker code

The handle_request function was growing too large to debug. It also
was written in a way that made it hard to test with a simple CLI like
we have for the image-builder.

This refactors things so that its easier to test the actual runner w/o
needing anything from rabbit.

lp:~doanac/uci-engine/imgbuild-integration-test 1 Development 2014-07-09 15:21:33 UTC
652. add an integration test (using queues...

Author: Andy Doan
Revision Date: 2014-07-09 15:10:41 UTC

add an integration test (using queues) for image builder

To avoid the mess of trying to get the proper rabbit credentials to
the host system, I've made it so that the real test runs on the target

lp:~doanac/uci-engine/integration-speed-up 1 Development 2014-06-18 12:50:12 UTC
563. revert the consolidation of "main"

Author: Andy Doan
Revision Date: 2014-06-18 12:50:12 UTC

revert the consolidation of "main"

lp:~doanac/uci-engine/pub-pause (Has a merge proposal) 1 Development 2014-06-17 14:50:53 UTC
589. lander: allow a worker to request a '...

Author: Andy Doan
Revision Date: 2014-06-16 22:25:33 UTC

lander: allow a worker to request a 'retry'

Workers like the publisher need to mark a ticket step as needing
to be retried. This adds a function, amqp_utils.progress_retry. When
called by a worker, the lander will pause the ticket and wait until
the ticket is updated to "resume". At this point the lander will resume
execution at this step and see if it can progress

lp:~doanac/phablet-tools/whooppsie 1 Development 2014-06-16 23:16:57 UTC
283. dumb debug

Author: Andy Doan
Revision Date: 2014-06-16 23:16:57 UTC

dumb debug

lp:~doanac/ubuntu-test-cases/whoopsie 1 Development 2014-06-16 17:56:31 UTC
245. enable whoopsie-upload-all in phablet...

Author: Andy Doan
Revision Date: 2014-06-16 17:55:45 UTC

enable whoopsie-upload-all in phablet-test-run

lp:~doanac/+junk/pyramid 1 Development 2014-06-12 18:06:37 UTC
573. add example of a pyramid based nf-dat...

Author: Andy Doan
Revision Date: 2014-06-12 18:06:37 UTC

add example of a pyramid based nf-data-collector

= getting started

== Setting up Juju LXC

You'll need a .juju/environments.yaml file with a "local" entry like:

  local:
    type: local
    default-series: precise
    lxc-clone: true
    lxc-clone-aufs: true
    admin-secret: secret

You'll also need your swift credentials set up. I have a .hpcloud-rc file like:

 export JUJU_ENV=local
 export OS_USERNAME="andy.doan@canonical.com"
 export OS_TENANT_NAME="andy_project"
 export OS_PASSWORD=<something special>
 export OS_AUTH_URL="https://region-a.geo-1.identity.hpcloudsvc.com:35357/v2.0"
 export OS_REGION_NAME=region-a.geo-1
 export OS_REQUIRES_TUNNEL=0
 export OS_NETWORK_NAME="evan.dandrea@canonical.com-network"

 # FOR OAUTH TOKENS (you can just put fake values for your needs now)
 export CI_LAUNCHPAD_PPA_OWNER=doanac
 export CI_LAUNCHPAD_USER=doanac
 export CI_OAUTH_CONSUMER_KEY="ci airline testing"
 export CI_OAUTH_TOKEN=<just put a fake value for now>
 export CI_OAUTH_TOKEN_SECRET=<another fake value for now>

 export HP_TENANT_ID=11630049285977
 export HP_ACCESS_KEY_ID=<i think this can be fake data for your needs>
 export HP_SECRET_KEY=<and this can be fake data as well>

You'll now have the settings in-place. In order to iterate rapidly, I
like to ensure juju's template image has all my dependencies pre-installed
so you don't wait for that every time you re-deploy. I do that with a
simple manual hack:

 juju bootstrap
 juju deploy cs:trusty/apache
 # now sit and wait for juju status to show it deployed
 juju destroy-environment --force -y local
 # you'll now have an lxc container named juju-trusty-template. modify
 # it with these commands:
 sudo lxc-start -d --name juju-trusty-template
 sudo lxc-attach --name juju-trusty-template -- add-apt-repository -y ppa:canonical-ci-engineering/ci-airline-phase-0
 sudo lxc-attach --name juju-trusty-template -- apt-get update
 sudo lxc-attach --name juju-trusty-template -- apt-get install -y rabbitmq-server python-amqplib python-pip python-jinja2 mercurial git-core subversion bzr gettext python-django-south python-lazr.enum python-tastypie python-amqplib python-swiftclient postgresql-9.1 postgresql-contrib-9.1 python-psutil dput python-dput lazr.enum python-txstatsd python-tz python-gnupg qemu-utils python-glanceclient python-amqplib python-requests python-novaclient python-psycopg2 pwgen postgresql-client gunicorn python-support pgtune postgresql-9.1-debversion postgresql-plpython-9.1 python-dnspython

 sudo lxc-stop --name juju-trusty-template

= Working with the code

Since you are on trusty and our base is still precise, you'll need a one time
hack in your tree to allow the restish charm to work on trusty:

 ln -s charms/precise charms/trusty

I then use a fairly simple workflow:

 1) <do changes>
 2) juju destroy-environment --force -y local; juju bootstrap
 3) rm -rf tmp/* ; mkdir tmp
 4) ./juju-deployer/deploy.py --build-only --working-dir ./tmp nf-data-collector
 5) cd tmp/charms
 6) ../../branches/juju-deployer/juju-deployer -c ../nf-data-collector.yaml ci-airline-experimental

 7) <check changes>, and go back to step 1 if you need to re-deploy

The actual juju-deployer line (6) which does the real juju work takes
about 2.5 minutes for me with juju-lxc running properly

lp:~doanac/+junk/silo-3 1 Development 2014-05-15 20:51:02 UTC
274. https://code.launchpad.net/~robru/pha...
lp:~doanac/charms/precise/jenkins-slave/ci-train_plus_executors 1 Development 2014-05-15 14:36:09 UTC
21. fix for trusty and num-executors

Author: Andy Doan
Revision Date: 2014-05-15 14:35:07 UTC

fix for trusty and num-executors

lp:~doanac/+junk/jenkins-slave 1 Development 2014-05-14 21:45:08 UTC
14. support configurable number of execut...

Author: Andy Doan
Revision Date: 2014-05-14 21:43:52 UTC

support configurable number of executors

based on: https://code.launchpad.net/~gandelman-a/charms/precise/jenkins-slave/extension_executors/+merge/191744

lp:~doanac/+junk/emulator-x86 1 Development 2014-05-14 20:23:43 UTC
223. temp hack while waiting for change in...

Author: Andy Doan
Revision Date: 2014-05-14 20:22:54 UTC

temp hack while waiting for change in unity8

lp:~doanac/phablet-tools/mterry-fixes 1 Development 2014-05-01 18:23:03 UTC
275. allow custom wait-script to be used b...

Author: Andy Doan
Revision Date: 2014-05-01 18:21:28 UTC

allow custom wait-script to be used by unlock-device

Also ensure setup-session isn't called when doing a NOSHELL test like
unity8

lp:~doanac/ubuntu-test-cases/mterry-fixes 1 Development 2014-05-01 18:21:12 UTC
225. update system-settle test for new unl...

Author: Andy Doan
Revision Date: 2014-05-01 18:19:33 UTC

update system-settle test for new unlock logic

system-settle-before needs to happen after the device was rebooted
and before we start running the tests. This moves the logic into
a wait-device script that is used by the unlock-script/phablet-test-run

as a consequence, reboot-and-wait is no longer needed

lp:~doanac/ubuntu-ci-services-itself/upgrade-support 1 Development 2014-04-04 19:33:25 UTC
421. merge with trunk

Author: Andy Doan
Revision Date: 2014-04-04 16:00:36 UTC

merge with trunk

lp:~doanac/ubuntu-test-cases/touch-emulator-support 1 Development 2014-04-02 22:45:24 UTC
227. ensure we really kill the emulator

Author: Andy Doan
Revision Date: 2014-04-02 22:45:24 UTC

ensure we really kill the emulator

lp:~doanac/+junk/silo-10 1 Development 2014-04-02 21:05:57 UTC
250. barry

Author: Andy Doan
Revision Date: 2014-04-02 21:05:57 UTC

barry

lp:~doanac/juju-deployer/multiple-series 1 Development 2014-04-01 20:03:40 UTC
110. ensure directory exists

Author: Andy Doan
Revision Date: 2014-04-01 20:03:40 UTC

ensure directory exists

lp:~doanac/ubuntu-test-cases/apt-get-update-rerun (Has a merge proposal) 1 Development 2014-02-26 19:11:30 UTC
194. add a new "re-run" job This job will...

Author: Andy Doan
Revision Date: 2014-02-26 19:09:48 UTC

add a new "re-run" job

This job will show up like the smoke-daily, but have rerun on the end.
Its a non-publishing job and also includes an option to run
"apt-get upate" after provisioning the device.

lp:~doanac/ubuntu-ci-services-itself/lander-base-image 1 Development 2014-02-26 04:25:02 UTC
277. lander: use base-image supplied by ti...

Author: Andy Doan
Revision Date: 2014-02-26 04:15:28 UTC

lander: use base-image supplied by ticket

We were using a hard-coded image. The ticket-system now includes
this information, so we can build using that.

lp:~doanac/ubuntu-ci-services-itself/lander-integration-bugs 1 Development 2014-01-30 17:20:09 UTC
178. lander: couple of integration bugs 1...

Author: Andy Doan
Revision Date: 2014-01-30 17:18:38 UTC

lander: couple of integration bugs

1) typo for reporting pkg building status to ticket system
2) if rabbit-base jobs fail we weren't exiting the job with an error

lp:~doanac/charms/precise/ubuntu-ci-services-itself/lander-image-builder-start (Has a merge proposal) 1 Development 2014-01-27 19:54:39 UTC
30. add ticket-system information into pa...

Author: Andy Doan
Revision Date: 2014-01-27 19:54:39 UTC

add ticket-system information into params

lp:~doanac/ubuntu-ci-services-itself/cli-error-logging 1 Development 2014-01-27 09:21:16 UTC
152. fix mp comments logging.INFO is too ...

Author: Andy Doan
Revision Date: 2014-01-27 09:21:16 UTC

fix mp comments

logging.INFO is too verbose for normal usage when doing file uploads.
This changes is back. It also removes the redunant "ERROR" from two
log.error lines i added

lp:~doanac/charms/precise/ubuntu-ci-services-itself/rabbitmq-worker-conf (Has a merge proposal) 1 Development 2014-01-26 22:02:29 UTC
11. add a simple mechanism to store a "un...

Author: Andy Doan
Revision Date: 2014-01-26 21:50:33 UTC

add a simple mechanism to store a "unit config" file

lp:~doanac/charms/precise/ubuntu-ci-services-itself/lander-cleanup (Has a merge proposal) 1 Development 2014-01-16 22:25:54 UTC
26. as per fginther

Author: Andy Doan
Revision Date: 2014-01-16 22:25:54 UTC

as per fginther

lp:~doanac/ubuntu-test-cases/mega-junit 1 Development 2014-01-13 19:38:36 UTC
159. allow autopilot tests producing junit...

Author: Andy Doan
Revision Date: 2014-01-13 19:36:40 UTC

allow autopilot tests producing junit xml to work with dashboard

This converts autopilot junit xml into utah.yaml for the dashboard.

Also fixes a small bug found in run-smoke

lp:~doanac/charms/precise/ubuntu-ci-services-itself/lander (Has a merge proposal) 1 Development 2014-01-08 21:08:12 UTC
27. clarify parameter passing and add pro...

Author: Andy Doan
Revision Date: 2014-01-08 21:08:12 UTC

clarify parameter passing and add progress trigger

parameter passing was being done via a file named child.json. However,
this is really a jenkins parameters file and not really json. This
renames that file and creates it with a few less lines of code.

lp:~doanac/+junk/lander-progress-trigger 1 Development 2014-01-06 19:46:09 UTC
84. oops

Author: Andy Doan
Revision Date: 2014-01-06 19:46:09 UTC

oops

lp:~doanac/charms/precise/ubuntu-ci-services-itself/lander-bsb 1 Development 2014-01-06 19:06:12 UTC
27. update jobs to deal with parameters p...

Author: Andy Doan
Revision Date: 2014-01-06 19:06:12 UTC

update jobs to deal with parameters properly

this requires the child-jobs to be run from where the master is
located so that they can access its workspace for the parameters
that are being accumulated from job-to-job.

lp:~doanac/+junk/rabbitmq-worker 1 Development 2013-12-18 20:32:04 UTC
13. install txstatsd

Author: Andy Doan
Revision Date: 2013-12-18 20:32:04 UTC

install txstatsd

lp:~doanac/ubuntu-ci-services-itself/statsd 1 Development 2013-12-18 18:15:52 UTC
46. add statsd utils and support to branc...

Author: Andy Doan
Revision Date: 2013-12-18 18:15:06 UTC

add statsd utils and support to branch-source-builder

lp:~doanac/+junk/txstatsd 1 Development 2013-12-17 23:10:56 UTC
1. idea for trying txstatsd charm

Author: Andy Doan
Revision Date: 2013-12-17 23:10:25 UTC

idea for trying txstatsd charm

lp:~doanac/+junk/health-check-test 1 Development 2013-11-15 20:27:59 UTC
2. make testcases unique This tries to ...

Author: Andy Doan
Revision Date: 2013-11-15 20:27:59 UTC

make testcases unique

This tries to give unique testcase names by adding _<x> if a procname
is repeated. There's no promise _1 from one run matches _1 on the next,
but it will probably work out that way in practice.

lp:~doanac/+junk/rftd 1 Development 2013-11-13 22:47:58 UTC
1027. add "sudo" needed for utah-client

Author: Andy Doan
Revision Date: 2013-11-13 22:47:58 UTC

add "sudo" needed for utah-client

lp:~doanac/utah/jsonschema-for-trusty bug(Has a merge proposal) 1 Development 2013-11-08 02:52:48 UTC
1024. 0.15+20131107 fix json-schema bug in...

Author: Andy Doan
Revision Date: 2013-11-08 02:52:48 UTC

0.15+20131107

fix json-schema bug in new library version on trusty

lp:~doanac/ubuntu-test-cases/smoke-use-phablet-test-run 1 Development 2013-11-05 16:49:23 UTC
112. convert to running autopilot tests wi...

Author: Andy Doan
Revision Date: 2013-11-05 16:49:23 UTC

convert to running autopilot tests with new autopilot script

this uses phablet-test-run directly

lp:~doanac/ubuntu-test-cases/statsd (Has a merge proposal) 1 Development 2013-10-29 20:37:59 UTC
103. fix config bug from MP Evan discover...

Author: Andy Doan
Revision Date: 2013-10-29 20:37:59 UTC

fix config bug from MP

Evan discovered this bug.

lp:~doanac/+junk/health-check-for-cking 1 Development 2013-10-29 15:43:30 UTC
101. health-check-idle template for cking

Author: Andy Doan
Revision Date: 2013-10-29 15:42:48 UTC

health-check-idle template for cking

lp:~doanac/phablet-tools/phablet-device (Has a merge proposal) 1 Development 2013-10-28 20:37:53 UTC
210. backout logging change (being fixed i...

Author: Andy Doan
Revision Date: 2013-10-28 20:37:53 UTC

backout logging change (being fixed in another branch already)

lp:~doanac/ubuntu-test-cases/config-rework (Has a merge proposal) 1 Development 2013-10-24 21:57:52 UTC
96. add statsd support for test-execution...

Author: Andy Doan
Revision Date: 2013-10-24 21:57:52 UTC

add statsd support for test-execution-service (ie MEGA run)

lp:~doanac/phablet-tools/unlock_screen (Has a merge proposal) 1 Development 2013-10-15 19:17:06 UTC
211. make phablet-test-run default to unlo...

Author: Andy Doan
Revision Date: 2013-10-15 19:17:06 UTC

make phablet-test-run default to unlocking the screen

also clean up the usage text so it displays properly on 80 columns

lp:~doanac/ubuntu-test-cases/cdimage-removal (Has a merge proposal) 1 Development 2013-09-26 18:48:27 UTC
32. make the 5 minute wait for install-an...

Author: Andy Doan
Revision Date: 2013-09-26 18:47:37 UTC

make the 5 minute wait for install-and-boot configurable

lp:~doanac/utah/probes-from-host (Has a merge proposal) 1 Development 2013-08-23 17:31:37 UTC
998. fix some broken test cases for the se...

Author: Andy Doan
Revision Date: 2013-08-23 17:31:37 UTC

fix some broken test cases for the server logic

lp:~doanac/utah/upgrade-from-host 1 Development 2013-08-08 20:08:28 UTC
991. touch: don't require utah on the targ...

Author: Andy Doan
Revision Date: 2013-08-08 20:06:38 UTC

touch: don't require utah on the target with --from-host

This allows the --from-host support to not require utah-client
be installed on the target.

It also renames the utah-host and utah-tgt intermediate files so
that the dashboard won't try and parse them for results.

lp:~doanac/phablet-tools/rndis (Has a merge proposal) 1 Development 2013-07-30 18:33:30 UTC
149. move phablet-network-bridge-addif to ...

Author: Andy Doan
Revision Date: 2013-07-30 18:33:30 UTC

move phablet-network-bridge-addif to /lib/udev

as per sergio's review. this is where other udev scripts get located

lp:~doanac/utah/touch-rndis 1 Development 2013-07-25 05:17:00 UTC
979. add notion of rndis networking for to...

Author: Andy Doan
Revision Date: 2013-07-25 05:17:00 UTC

add notion of rndis networking for touch images

This adds a way to enable networking on touch devices via
the USB connection to the host PC (rndis). This is done by:

step 1: setup up host to be ready with:
  examples/phablet-network-bridge-setup

This sets up a bridge device and the proper port forwarding. It
also sets up a udev rule to add interfaces as they appear and
automatically grab a DHCP address.

step 2: add --rndis to run_utah_phablet.py commands

lp:~doanac/utah/puts-battery 1 Development 2013-07-17 19:29:46 UTC
974. allow battery selection to be control...

Author: Andy Doan
Revision Date: 2013-07-17 19:29:46 UTC

allow battery selection to be controlled via environment variable

makes things easier for integrating into run_utah_phablet.py

lp:~doanac/+junk/puts-simple 1 Development 2013-07-16 23:40:38 UTC
1. simple example to use puts

Author: Andy Doan
Revision Date: 2013-07-16 23:40:10 UTC

simple example to use puts

lp:~doanac/+junk/smoke-touch-apps 1 Development 2013-07-11 18:04:35 UTC
15. convert to use pauls scripts for devi...

Author: Andy Doan
Revision Date: 2013-07-11 18:04:35 UTC

convert to use pauls scripts for device ids

lp:~doanac/utah/from-host 1 Development 2013-07-10 22:06:17 UTC
973. add energy computations to battery pr...

Author: Andy Doan
Revision Date: 2013-07-10 22:06:17 UTC

add energy computations to battery probe code

This helps report the actual energy used(mW) in the probe data so that
users don't have to compute this.

lp:~doanac/utah/reboot-bugs 1 Development 2013-07-08 22:59:42 UTC
967. fix timing error for reboot support i...

Author: Andy Doan
Revision Date: 2013-07-08 22:59:18 UTC

fix timing error for reboot support in autorun

Running under a VM in TMPFS, the activecheck call seems to somehow
run too fast. Retrying seems to make it always work.

lp:~doanac/+junk/utah-dist-upgrade-example 1 Development 2013-07-03 18:34:06 UTC
4. try and reduce apt warnings

Author: Andy Doan
Revision Date: 2013-07-03 18:34:06 UTC

try and reduce apt warnings

lp:~doanac/+junk/qa-power-idle 1 Development 2013-07-01 17:06:58 UTC
3. fix bad logic for determining USB_POW...

Author: Andy Doan
Revision Date: 2013-07-01 17:06:58 UTC

fix bad logic for determining USB_POWER script

lp:~doanac/+junk/utah-reboot-example 1 Development 2013-06-29 17:14:42 UTC
2. update to bzr branch

Author: Andy Doan
Revision Date: 2013-06-29 17:14:42 UTC

update to bzr branch

lp:~doanac/+junk/autopilot-utah-example 1 Development 2013-06-28 16:49:50 UTC
1. example of utah and autopilot for touch

Author: Andy Doan
Revision Date: 2013-06-28 16:49:16 UTC

example of utah and autopilot for touch

lp:~doanac/utah/puts-probe 1 Development 2013-06-20 20:32:06 UTC
948. add a puts battery implementation Th...

Author: Andy Doan
Revision Date: 2013-06-20 20:30:46 UTC

add a puts battery implementation

This works in conjunction with the put-server API we've created
and have running on phoenix in the QA lab:

 https://code.launchpad.net/~utah/utah/puts-server

lp:~doanac/+junk/smoke-touch 1 Development 2013-05-27 04:23:23 UTC
6. add jenkins script logic to setup job

Author: Andy Doan
Revision Date: 2013-05-27 04:21:07 UTC

add jenkins script logic to setup job

lp:~doanac/utah/bug1179531 bug(Has a merge proposal) 1 Development 2013-05-15 18:06:35 UTC
899. code review fixes from javier

Author: Andy Doan
Revision Date: 2013-05-15 18:06:35 UTC

code review fixes from javier

lp:~doanac/phablet-tools/cmd-run 1 Development 2013-05-10 22:05:31 UTC
94. add a simple way to execute commands ...

Author: Andy Doan
Revision Date: 2013-05-10 22:04:16 UTC

add a simple way to execute commands via adb in the target

lp:~doanac/phablet-tools/pkg-inst (Has a merge proposal) 1 Development 2013-05-10 21:50:40 UTC
93. add a utility to make package install...

Author: Andy Doan
Revision Date: 2013-05-10 21:50:40 UTC

add a utility to make package installation easier

lp:~doanac/unity/utah-jenkins-debug (Has a merge proposal) 1 Development 2013-05-07 20:49:04 UTC
214. get more debugging from latecommand ...

Author: Andy Doan
Revision Date: 2013-05-07 20:45:26 UTC

get more debugging from latecommand

The latecommands seem to be falling and not giving much detail
as to why. A quick hack is to use "set -x" so we'll at least
know which command was executed before it failed.

lp:~doanac/+junk/stupid 1 Development 2013-04-10 16:52:57 UTC
852. create common template utility functi...

Author: Andy Doan
Revision Date: 2013-04-10 16:08:32 UTC

create common template utility functions

This seemed to be a common pattern we could simplify

lp:~doanac/+junk/linaro-white 1 Development 2013-04-09 18:45:42 UTC
6. add footer support this broke our go...

Author: Andy Doan
Revision Date: 2013-04-09 18:45:42 UTC

add footer support

this broke our google analytics

lp:~doanac/+junk/qa-baseline-testing 1 Development 2013-03-28 23:30:39 UTC
26. oops

Author: Andy Doan
Revision Date: 2013-03-28 23:30:39 UTC

oops

lp:~doanac/utah/release-dummy-check 1 Development 2013-03-28 21:00:33 UTC
848. version-0.11.2

Author: Andy Doan
Revision Date: 2013-03-28 21:00:33 UTC

version-0.11.2

lp:~doanac/+junk/utah-ubuntu-autopilot 1 Development 2013-03-19 21:54:04 UTC
4. add some logic to remove need for cus...

Author: Andy Doan
Revision Date: 2013-03-19 21:54:04 UTC

add some logic to remove need for custom preseed

lp:~doanac/+junk/autopilot-example-utah 1 Development 2013-03-04 17:39:42 UTC
8. typo!

Author: Andy Doan
Revision Date: 2013-03-04 17:39:42 UTC

typo!

lp:~doanac/lava-lab/lava-scripts (Has a merge proposal) 1 Development 2013-02-05 04:16:40 UTC
69. minor bug from last commit make sure...

Author: Andy Doan
Revision Date: 2013-02-05 04:16:40 UTC

minor bug from last commit

make sure we return the most interest part of this function

lp:~doanac/lava-lab/salt-state-perms bug 1 Development 2013-01-22 21:50:12 UTC
54. ensure directory permission is always...

Author: Andy Doan
Revision Date: 2013-01-22 21:47:58 UTC

ensure directory permission is always set

lp:~doanac/+junk/linaro-its-tools 1 Development 2013-01-22 18:30:49 UTC
25. put a newline at the end of ~/.passwo...

Author: Antonio Terceiro
Revision Date: 2013-01-22 18:30:49 UTC

put a newline at the end of ~/.password

this makes `cat ~/.password` less annoying

lp:~doanac/lava-server/lava-project-south-issues 1 Development 2013-01-14 21:27:41 UTC
407. fix south migration issues from last ...

Author: Andy Doan
Revision Date: 2013-01-14 21:26:37 UTC

fix south migration issues from last commit

Basically you can't just delete an extension that's made changes
to our DB. So this keeps the minimal amount of stuff around from
the extension.

lp:~doanac/lava-celery/celery-back 1 Development 2013-01-10 03:02:06 UTC
97. need some fixes for dispatcher deploy...

Author: Andy Doan
Revision Date: 2013-01-10 03:01:31 UTC

need some fixes for dispatcher deployed. also including michael's new filter API

lp:~doanac/lava-dispatcher/config-finding-fix (Has a merge proposal) 1 Development 2012-12-20 18:10:45 UTC
513. fix issue when running "lava devices/...

Author: Andy Doan
Revision Date: 2012-12-20 18:09:03 UTC

fix issue when running "lava devices/dispath" without activating env

The dispatcher command code requires VIRTUAL_ENV to be set by
the activate script. This adds a fall-through case in the event
we are a part of a normal lava instal.

lp:~doanac/+junk/arm-probe-demo 1 Development 2012-12-18 17:36:32 UTC
11. doc addition for post-process

Author: Andy Doan
Revision Date: 2012-12-18 17:36:32 UTC

doc addition for post-process

lp:~doanac/lava-dispatcher/uefi-from-prak (Linked to a blueprint)(Has a merge proposal) 1 Development 2012-11-30 15:52:25 UTC
474. uefi support changes from prakash

Author: Andy Doan
Revision Date: 2012-11-30 15:51:49 UTC

uefi support changes from prakash

lp:~doanac/+junk/lava-cookbooks 1 Development 2012-10-11 19:30:50 UTC
7. add some sudo things instance-manager...

Author: Andy Doan
Revision Date: 2012-10-11 19:30:50 UTC

add some sudo things instance-manager needs

lp:~doanac/lava-test/bigLITTLE (Has a merge proposal) 1 Development 2012-08-23 22:40:06 UTC
169. add big_LITTLE suite only works with...

Author: Andy Doan
Revision Date: 2012-08-23 22:39:33 UTC

add big_LITTLE suite

only works with builds that include Linaro's bigLITTLE test suite

lp:~doanac/lava-scheduler/configurable-dispatchers-v2 (Has a merge proposal) 1 Development 2012-07-01 17:45:26 UTC
193. make dispatcher field larger as per ...

Author: Andy Doan
Revision Date: 2012-07-01 17:45:26 UTC

make dispatcher field larger

as per review comment a 64byte field like this in postgres is pointless

lp:~doanac/lava-celery/logging-madness (Has a merge proposal) 1 Development 2012-06-27 03:43:08 UTC
19. fix oddness with logging in tasks Th...

Author: Andy Doan
Revision Date: 2012-06-27 03:40:12 UTC

fix oddness with logging in tasks

The run_remote command wasn't handling all exceptions which under
certain circumstances made celeryd handle the exception. This is
somewhat okay, but the error gets logged in the worker. When you
think about the scenario where we run the dispatcher on a remote
system, the caller (scheduler in this case) will need to see these
types of errors.

The other issue I hit was that when exceptions come from the
CloudifierDispatcher code, the stdout/stderr references get all
munged up in celery's twisted maze of redirecting its stdout to
its loggers. The only simple way out I found was with the hack:

 sys.stderr.logger.root.handlers[0].stream = logging.sys.__stderr__

This also adds a bit of debbuging to indicate when a command is
received, what arguments were passed, and when it finished

lp:~doanac/lava-dispatcher/fm-android-support (Has a merge proposal) 1 Development 2012-06-22 01:49:53 UTC
332. fix option support for enable_network...

Author: Andy Doan
Revision Date: 2012-06-22 01:48:47 UTC

fix option support for enable_network_after_boot_android

this code always returned true based on how it was written

lp:~doanac/linaro-image-tools/script-hooks-on-mpoirier-snowball 1 Development 2012-05-23 18:57:15 UTC
519. merge mabac's script hooks into mpoir...

Author: Andy Doan
Revision Date: 2012-05-23 18:56:08 UTC

merge mabac's script hooks into mpoirer's snowball branch

lp:~doanac/linaro-image-tools/mabacs-script-hooks-ontip 1 Development 2012-04-24 15:00:37 UTC
514. Merge mabac's script hooks

Author: Andy Doan
Revision Date: 2012-04-24 15:00:37 UTC

Merge mabac's script hooks

lp:~doanac/+junk/daily-prebuilt-images-precise 1 Development 2012-04-23 17:28:50 UTC
32. EULA logic on snapshots changed We w...

Author: Andy Doan
Revision Date: 2012-04-23 17:28:50 UTC

EULA logic on snapshots changed

We were originally able to get the build listings without doing
EULA stuff. This has changed, so cookie logic being added to core
code to be safe.

lp:~doanac/+junk/daily-prebuilt-images 1 Development 2012-03-27 14:36:41 UTC
20. update output directory to match snap...

Author: Andy Doan
Revision Date: 2012-03-21 20:22:31 UTC

update output directory to match snapshots.l.o organization

instead of putting pre-builts in their own directory, they will
now get placed with the hwpack like:

 http://snapshots.linaro.org/oneiric/lt-mx5-oneiric/20120321/1/images/<file>

lp:~doanac/linaro-android-build-tools/user-build-script 1 Development 2012-03-19 22:36:01 UTC
430. debug crap

Author: Andy Doan
Revision Date: 2012-03-19 22:36:01 UTC

debug crap

lp:~doanac/lava-android-test/restricted-coremark (Has a merge proposal) 1 Development 2012-03-06 23:46:03 UTC
141. Add support for restricted coremark b...

Author: Andy Doan
Revision Date: 2012-03-06 23:40:50 UTC

Add support for restricted coremark bench

This adds the basic ability to run the coremark benchmark on
Android. Since coremark is a restricted program, the actual
binary is managed separate from this test. The script,
download_test.sh is used by coremark.py to download the proper
binary. Therefore, this test requires install options to be
passed to the install command for example:

 lava-android-test install -o "coremark_url=https://user:pass@1.1.1.1/coremark-linaro4.6" coremark

The above example would download from an HTTP password protected
directory the coremark-linaro4.6 binary.

lp:~doanac/+junk/lava_android_benchmark_views 1 Development 2012-01-18 16:42:50 UTC
1. first drop Things working: * you ca...

Author: Andy Doan
Revision Date: 2012-01-18 16:38:03 UTC

first drop

Things working:
 * you can create a report and assign runs to it
   using the admin tool

 * reports show up and you can view rough plots as well
   as drill down to summaries of individual runs

Missing:

 * flot doesn't work great. combining the multiplebars support
   and errorbars isn't quite right. the errorbars measurement
   makes the bottom part of each bar disappear

 * flot error bars don't show up on top of their corresponding
   bar

 * flot titles for skia look terrible. need to be able to write
   them at an angle or something

 * the "Totals" table should be done as a percent diff from the
   android toolchain

lp:~doanac/linaro-documentation/linaro-narrow 1 Development 2011-11-29 18:00:03 UTC
4. remove the icon that differentiates b...

Author: Andy Doan
Revision Date: 2011-11-29 18:00:03 UTC

remove the icon that differentiates between internal/external
wiki links

lp:~doanac/linaro-documentation/wiki-scripts 1 Development 2011-11-23 17:11:02 UTC
1. initial commit of some handy script r...

Author: Andy Doan
Revision Date: 2011-11-23 17:09:50 UTC

initial commit of some handy script related to the wiki

lp:~doanac/linaro-image-tools/hwpack-description-support 1 Development 2011-09-01 22:21:37 UTC
431. add ability to provide hwpack descrip...

Author: Andy Doan
Revision Date: 2011-09-01 20:48:05 UTC

add ability to provide hwpack descriptions to the user

it would have been nice to add these descriptions somewhere
else in the YAML so you don't have to type the hwpack name
multiple times, but that would break backward compatibility
in the file

lp:~doanac/+junk/mailliststat 1 Development 2011-03-16 01:41:16 UTC
7. Add support for ingoring certain laun...

Author: Andy Doan
Revision Date: 2011-03-16 01:36:29 UTC

Add support for ingoring certain launchpad projects

lp:~doanac/+junk/merge-example 1 Development 2011-02-18 01:09:57 UTC
3. Capitalization fix

Author: Andy Doan
Revision Date: 2011-02-18 01:05:20 UTC

Capitalization fix

lp:~doanac/lava-test/stream-md5 bug(Has a merge proposal) 1 Development 2011-02-11 19:17:29 UTC
57. updated md5 for stream.c

Author: Andy Doan
Revision Date: 2011-02-11 19:12:55 UTC

updated md5 for stream.c

lp:~doanac/linaro-images/hwpack.natty.linaro-overo 1 Development 2011-01-24 20:46:40 UTC
2. The original version mistakenly used ...

Author: Andy Doan
Revision Date: 2011-01-24 20:46:40 UTC

The original version mistakenly used maverick instead of natty

193 of 93 results