Hi Mark,
we use Travis only for PR checks, but not for the main build.
But the docker image reference is nice, I can run it locally too and
hopefully there are not windows specific madness bits blocking access to
the server (firewall, binding tcp to specific IP addresses and the like).

I'm already using a docker image for Oracle tests... and well, in theory we
could setup Travis so that it checks the PRs by also running the database
specific online tests in parallel I suppose
(first run build without tests up to the module in question, then run
docker and run the tests only for the database in question).
I'm just not sure if that would clog up the Travis build queue to the point
that we'll start having very long waits, but having as many tests as
possible run when a GT change is performed
sure sounds interesting to me.

Anyone knows how many concurrent builders we can get out of Travis?

Cheers
Andrea


On Wed, Jun 12, 2019 at 2:42 PM mark <mc.pr...@gmail.com> wrote:

> On 6/12/19 8:17 AM, Andrea Aime wrote:
>
> The SQL server one I have not run in ages, tried quickly but could not get
> remote connections running (tried several guides,
> still not working, not sure where the issue is). May try again later down
> the road, I'm going through a couple of difficult
> weeks right now.
>
> not sure if there is an interest in running the sql server online tests on
> Travis, I've set up one of my jobs running integration tests on Travis w/
> mssql 2017 on Ubuntu and it wasn't too difficult.
>
> Basically use a profile/env var to install mssql in the build image, and
> run maven with the profile.
>
> see:
> https://github.com/B3Partners/brmo/blob/master/.travis/install-mssql.sh
> (install) and
> https://github.com/B3Partners/brmo/blob/master/.travis/setup-mssql.sh
> (database/schema setup) and the travis.yml in that repo.
>
> another option is using the docker version of mssql, eg.
>
> docker pull microsoft/mssql-server-linux:2017-latest
> # note `--rm` will delete the instance when stopped
> docker run -e 'ACCEPT_EULA=Y' -e 'MSSQL_SA_PASSWORD=Password12!' --rm -p 
> 1433:1433 --name sql2017 -h sql2017 -d 
> microsoft/mssql-server-linux:2017-latest
>
> Appveyor also provides various (also older) mssql versions, but is even
> slower for free projects, also because they only run one job at a time.
> Mark
>
>
> _______________________________________________
> GeoTools-Devel mailing list
> GeoTools-Devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/geotools-devel
>


-- 

Regards, Andrea Aime == GeoServer Professional Services from the experts!
Visit http://goo.gl/it488V for more information. == Ing. Andrea Aime
@geowolf Technical Lead GeoSolutions S.A.S. Via di Montramito 3/A 55054
Massarosa (LU) phone: +39 0584 962313 fax: +39 0584 1660272 mob: +39 339
8844549 http://www.geo-solutions.it http://twitter.com/geosolutions_it
------------------------------------------------------- *Con riferimento
alla normativa sul trattamento dei dati personali (Reg. UE 2016/679 -
Regolamento generale sulla protezione dei dati “GDPR”), si precisa che ogni
circostanza inerente alla presente email (il suo contenuto, gli eventuali
allegati, etc.) è un dato la cui conoscenza è riservata al/i solo/i
destinatario/i indicati dallo scrivente. Se il messaggio Le è giunto per
errore, è tenuta/o a cancellarlo, ogni altra operazione è illecita. Le
sarei comunque grato se potesse darmene notizia. This email is intended
only for the person or entity to which it is addressed and may contain
information that is privileged, confidential or otherwise protected from
disclosure. We remind that - as provided by European Regulation 2016/679
“GDPR” - copying, dissemination or use of this e-mail or the information
herein by anyone other than the intended recipient is prohibited. If you
have received this email by mistake, please notify us immediately by
telephone or e-mail.*
_______________________________________________
GeoTools-Devel mailing list
GeoTools-Devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geotools-devel

Reply via email to