Re: Buildbots: require Python-SQLite v3.8.2 [was: FSFS recovery should prune rep-cache even if its use is disabled]

2018-08-27 Thread Branko Čibej
On 27.08.2018 14:00, Daniel Shahaf wrote:
> Branko Čibej wrote on Mon, 27 Aug 2018 13:44 +0200:
>> On 24.08.2018 13:55, Julian Foad wrote:
>>> Brane, this one's yours:
>>>
>>>   https://ci.apache.org/buildslaves/svn-x64-macosx-dgvrs
>>>
>>> The new tests for #4077 are failing on at least this buildbot-slave.
>>>
>>>   "Can't read rep-cache schema 2 using old Python-SQLite version (3,
>>> 7, 13) < (3,8,2)"
>>>
>>> (danielsh says: the magic number 3.8.2 is the minimum version of SQLite
>>> that trunk can be built with.)
>>>
>>> Can you upgrade it please?
>> What should I upgrade?
> The 'sqlite3' Python module.  Compare:
>
> svn --version -v | grep SQLite
> python -c 'import sqlite3; print(sqlite3.sqlite_version)'

Ah, ok, that's separate, of course. Implies upgrading Python itself ...
we're using the OS-default version, which is 2.7.5, and a manually
compiled Python3. I'll see what I can do.

-- Brane



Re: Buildbots: require Python-SQLite v3.8.2 [was: FSFS recovery should prune rep-cache even if its use is disabled]

2018-08-27 Thread Daniel Shahaf
Branko Čibej wrote on Mon, 27 Aug 2018 13:44 +0200:
> On 24.08.2018 13:55, Julian Foad wrote:
> > Brane, this one's yours:
> >
> >   https://ci.apache.org/buildslaves/svn-x64-macosx-dgvrs
> >
> > The new tests for #4077 are failing on at least this buildbot-slave.
> >
> >   "Can't read rep-cache schema 2 using old Python-SQLite version (3,
> > 7, 13) < (3,8,2)"
> >
> > (danielsh says: the magic number 3.8.2 is the minimum version of SQLite
> > that trunk can be built with.)
> >
> > Can you upgrade it please?
> 
> What should I upgrade?

The 'sqlite3' Python module.  Compare:

svn --version -v | grep SQLite
python -c 'import sqlite3; print(sqlite3.sqlite_version)'

> The build on that buildbot use get-deps.sh to download an amalgamated
> version of SQLite.

Cheers,

Daniel


Re: Buildbots: require Python-SQLite v3.8.2 [was: FSFS recovery should prune rep-cache even if its use is disabled]

2018-08-27 Thread Branko Čibej
On 24.08.2018 13:55, Julian Foad wrote:
> Brane, this one's yours:
>
>   https://ci.apache.org/buildslaves/svn-x64-macosx-dgvrs
>
> The new tests for #4077 are failing on at least this buildbot-slave.
>
>   "Can't read rep-cache schema 2 using old Python-SQLite version (3,
> 7, 13) < (3,8,2)"
>
> (danielsh says: the magic number 3.8.2 is the minimum version of SQLite
> that trunk can be built with.)
>
> Can you upgrade it please?

What should I upgrade? The build on that buildbot use get-deps.sh to
download an amalgamated version of SQLite.

-- Brane



Buildbots: require Python-SQLite v3.8.2 [was: FSFS recovery should prune rep-cache even if its use is disabled]

2018-08-24 Thread Julian Foad

Brane, this one's yours:

  https://ci.apache.org/buildslaves/svn-x64-macosx-dgvrs

The new tests for #4077 are failing on at least this buildbot-slave.

  "Can't read rep-cache schema 2 using old Python-SQLite version (3, 7, 
13) < (3,8,2)"


(danielsh says: the magic number 3.8.2 is the minimum version of SQLite
that trunk can be built with.)

Can you upgrade it please?

--
- Julian