[sqlalchemy] Re: Buildbot

2007-05-01 Thread Rick Morrison
Huh?  I thought this was something you wantedI guess I misunderstood the
thread.

I don't have time to do this by myself. If someone wants to pick it up and
run with it, I'll be happy to work with you and to host the buildslave here,
or I'm OK with just letting the thing die, too.





On 4/30/07, Michael Bayer [EMAIL PROTECTED] wrote:


 the main effort here is all the familiarizing and configuration of
 buildbots, which i have made great efforts to have no understanding of
 whatsoever.  if a buildbot master doesnt take up a lot of ram or CPU I could
 run it on SA's own host.
 On Apr 30, 2007, at 11:43 AM, Rick Morrison wrote:

 Hi Mike,

 Pursuant to our discussion on another thread regarding buildbots, I've got
 a preliminary buildbot slave VM set up as follows:

 Ubuntu 6.10
 VMware tools
 Python 2.4
 Buildbot 0.7.4
 Postgres 8.2.2
 MySQL 5.0.37
 Sqlite 3.3.17 (also known as version du semaine these days...)
 FreeTDS / UnixODBC

 psycopg 2.0.5.1
 pysqlite 2.3.2
 pyodbc 2.0.35
 pymssql 0.8.0 (with some local patches to fix selectmany())
 mysqldb 1.2.2
 Sqlalchemy trunk

 If I host the bot here, it'll also be able to access a MS-SQL 2005 server.
 So all told, this botslave should be able to test:

 Postgres
 MySQL
 Sqlite
 MS-SQL via pyodbc  (Unix)
 MS-SQL via pymssql (Unix)

 We'll still need to arrange hosting for the buildbot master (maybe someone
 with the PSF can help here?), and some slaves for Oracle, Firebird and
 Informix.

 Rick





 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
sqlalchemy group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~--~~~~--~~--~--~---



[sqlalchemy] Re: Buildbot

2007-05-01 Thread skip . montanaro


Rick Huh?  I thought this was something you wantedI guess I
Rick misunderstood the thread.

Rick I don't have time to do this by myself. If someone wants to pick
Rick it up and run with it, I'll be happy to work with you and to host
Rick the buildslave here, or I'm OK with just letting the thing die,
Rick too.


I've got an SQLalchemy build slave running on my Mac at hom, but I've never
been able to get a workable combination of auxiliary database packages.  I
eventually got it mostly working with PostgreSQL but there is still some
fishy sqlite dependency that I can't resolve.  If someone would like to help
me figure things out I'd be most appreciative.

Skip Montanaro

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
sqlalchemy group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~--~~~~--~~--~--~---



[sqlalchemy] Re: Buildbot

2007-05-01 Thread Rick Morrison
I wouldn't think that pysqlite being installed on the master is an issue:
the tests would be run on the slave and in the slave environment.

I think that Skip's sqlite issue is more likely one of:

  a) using the included pysqlite in Python 2.5+ and issues with that
 or
  b) conflict with the sqlite library that ships with OSX

and out of those, I would bet (b). The sqlite that ships for Coredata with
OSX Tiger is old, and I think that SA doesn't like it. I had the same issue
with an older version of FC Linux that came with a dependency on sqlite that
I couldn't break. Fixed things by use ./configure with --prefix to re locate
the binary.

and yeah, I don't think that the masters on pybots will help, we will need
our own.

On 5/1/07, Michael Bayer [EMAIL PROTECTED] wrote:



 On May 1, 2007, at 2:49 PM, [EMAIL PROTECTED] wrote:

 
  I've got an SQLalchemy build slave running on my Mac at hom, but
  I've never
  been able to get a workable combination of auxiliary database
  packages.  I
  eventually got it mostly working with PostgreSQL but there is still
  some
  fishy sqlite dependency that I can't resolve.  If someone would
  like to help
  me figure things out I'd be most appreciative.
 
  Skip Montanaro
 

 but that issue is beacuse your buildbot is triggered off the Python
 trunk/build, which has an incompatible sqlite3 distro inside of it,
 or something like that, right ?

 i may not understand this about buildbots, but dont the buildbots on
 pybots.org only respond to Python checkins, as opposed to checkins on
 the individual projects ?  or both ?  is there any reason one would
 want to use his/her own buildmaster separate from the one on
 pybots.org ?

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
sqlalchemy group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~--~~~~--~~--~--~---



[sqlalchemy] Re: Buildbot

2007-05-01 Thread skip . montanaro


Rick   a) using the included pysqlite in Python 2.5+ and issues with
Rick  that
Rick   b) conflict with the sqlite library that ships with OSX

Rick and out of those, I would bet (b). The sqlite that ships for
Rick Coredata with OSX Tiger is old, and I think that SA doesn't like
Rick it. I had the same issue with an older version of FC Linux that
Rick came with a dependency on sqlite that I couldn't break. Fixed
Rick things by use ./configure with --prefix to re locate the binary.

Yes, SA doesn't like the sqlite that ships with OSX and core Python doesn't
seem to like the latest sqlite.  I eventually switched to PostgreSQL but
there's still something in there that SA doesn't like.

Skip

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
sqlalchemy group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~--~~~~--~~--~--~---



[sqlalchemy] Re: Buildbot

2007-04-30 Thread Michael Bayer

the main effort here is all the familiarizing and configuration of  
buildbots, which i have made great efforts to have no understanding  
of whatsoever.  if a buildbot master doesnt take up a lot of ram or  
CPU I could run it on SA's own host.

On Apr 30, 2007, at 11:43 AM, Rick Morrison wrote:

 Hi Mike,

 Pursuant to our discussion on another thread regarding buildbots,  
 I've got a preliminary buildbot slave VM set up as follows:

 Ubuntu 6.10
 VMware tools
 Python 2.4
 Buildbot 0.7.4
 Postgres 8.2.2
 MySQL 5.0.37
 Sqlite 3.3.17 (also known as version du semaine these days...)
 FreeTDS / UnixODBC

 psycopg 2.0.5.1
 pysqlite 2.3.2
 pyodbc 2.0.35
 pymssql 0.8.0 (with some local patches to fix selectmany())
 mysqldb 1.2.2
 Sqlalchemy trunk

 If I host the bot here, it'll also be able to access a MS-SQL 2005  
 server. So all told, this botslave should be able to test:

 Postgres
 MySQL
 Sqlite
 MS-SQL via pyodbc  (Unix)
 MS-SQL via pymssql (Unix)

 We'll still need to arrange hosting for the buildbot master (maybe  
 someone with the PSF can help here?), and some slaves for Oracle,  
 Firebird and Informix.

 Rick

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
sqlalchemy group.
To post to this group, send email to sqlalchemy@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sqlalchemy?hl=en
-~--~~~~--~~--~--~---