Re: ops4j jenkins down?

2018-05-25 Thread Niclas Hedhman
SaaS = Service as a Service ?  Or we have come full circle;  Saas = Saas as
a Service  :-D

On Fri, May 25, 2018 at 8:40 PM, Toni Menzel  wrote:

> By now its most likely that the CI Server is part of the data center
> outage of our provider Hetzner in Germany: https://www.hetzner-
> status.de/en.html
> This incident is ongoing.
>
>
> * What is Developer Ergonomics **? *
>
>
>
> *www.rebaze.de  | www.rebaze.com
>  | @rebazeio *
>
> On Fri, May 25, 2018 at 12:07 PM, Toni Menzel 
> wrote:
>
>> Yes, understandable ;)
>> As a clarification, this server is one of the last managed infra for
>> OPS4J.
>> I'd like to OSS the software side of it (Infra as Code). Anyone want to
>> help/start out with this?
>>
>> Just out of curiosity (and my general drift towards SaaS): What are the
>> current needs for a privately managed CI that are not satisfied by
>> platforms like circle CI, Cloudbees, Travis etc?
>>
>> Thanks. FYI will have slow progress since i only can access all this
>> "in-between of everything".
>>
>> Toni
>>
>>
>> * What is Developer Ergonomics **? *
>>
>>
>>
>> *www.rebaze.de  | www.rebaze.com
>>  | @rebazeio *
>>
>> On Fri, May 25, 2018 at 11:54 AM, Grzegorz Grzybek 
>> wrote:
>>
>>> Hello
>>>
>>> By the way - is there a chance for https:// ? I'm a bit reluctant
>>> sending "Authorization: Basic xxx" over http://...
>>>
>>> regards
>>> Grzegorz Grzybek
>>>
>>> 2018-05-25 9:58 GMT+02:00 Jean-Baptiste Onofré <
>>> jeanbaptiste.ono...@gmail.com>:
>>>
 Cool,

 Thanks Toni !

 Regards
 JB

 On 25/05/2018 09:46, Toni Menzel wrote:

 i am on it. Strange, the box just seems to be gone and away. Will let
 you know.

 * What is Developer Ergonomics **? *



 *www.rebaze.de  | www.rebaze.com
  | @rebazeio *

 On Fri, May 25, 2018 at 8:40 AM, 'Achim Nierbeck' via OPS4J <
 ops4j@googlegroups.com> wrote:

> yeah it seems to be dead.
> I already pinged toni, he might know.
>
> regards, Achim
>
> 2018-05-25 8:30 GMT+02:00 Jean-Baptiste Onofré <
> jeanbaptiste.ono...@gmail.com>:
>
>> Thanks for the update Achim.
>>
>> Unfortunately, I can't access (using SSH) to the Jenkins server :/
>>
>> Regards
>> JB
>>
>> On 25/05/2018 08:16, 'Achim Nierbeck' via OPS4J wrote:
>>
>> actually cirlce ci does have some issues with long running tests,
>> which are needed for the integration tests.
>> Therefore Jenkins is still the main build server.
>> I'll check
>>
>> regards, Achim
>>
>> 2018-05-25 7:51 GMT+02:00 Jean-Baptiste Onofré <
>> jeanbaptiste.ono...@gmail.com>:
>>
>>> Hi Stephan,
>>>
>>> AFAIR, we are using circleci now (at least for Pax Web):
>>>
>>> https://circleci.com/gh/ops4j
>>>
>>> Let me check if Jenkins is still used.
>>>
>>> Regards
>>> JB
>>>
>>> On 25/05/2018 07:49, Stephan Siano wrote:
>>>
>>> Hi,
>>>
>>> Is it possible that the ops4j jenkins ci.ops4j.org is down? I get a
>>> connection timeout if I try to access it.
>>>
>>> Best regards
>>> Stephan
>>> --
>>> --
>>> --
>>> OPS4J - http://www.ops4j.org - ops4j@googlegroups.com
>>>
>>> ---
>>> You received this message because you are subscribed to the Google
>>> Groups "OPS4J" group.
>>> To unsubscribe from this group and stop receiving emails from it,
>>> send an email to ops4j+unsubscr...@googlegroups.com.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>>
>>> --
>>> --
>>> --
>>> OPS4J - http://www.ops4j.org - ops4j@googlegroups.com
>>>
>>> ---
>>> You received this message because you are subscribed to the Google
>>> Groups "OPS4J" group.
>>> To unsubscribe from this group and stop receiving emails from it,
>>> send an email to ops4j+unsubscr...@googlegroups.com.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>
>>
>> --
>>
>> Apache Member
>> Apache Karaf  Committer & PMC
>> OPS4J Pax Web 
>> Committer & Project Lead
>> blog 
>> Co-Author of Apache Karaf Cookbook 
>>
>> Software Architect / Project Manager / Scrum Master
>>
>> --
>> --
>> --
>> OPS4J - http://www.ops4j.org - ops4j@googlegroups.com
>>
>> ---
>> You 

Re: Making extenders subsystem-aware

2018-05-25 Thread Jaseem
Hi Stephan,

Yes, that makes sense.

According to the specification, region context's bundleContext was meant 
for this:

Typically the Region's context bundle would be used to obtain a bundle 
> context with the getBundleContext() method, which has a perspective as a 
> constituent of the Region. This is useful in the following ways:
>
>- Implementing Subsystem aware extenders. Such extenders need to be 
>able to register listeners and monitor the inside of a Region in order to 
>react to the constituent bundles of a Region.
>- Monitoring of internal events. 
>
> Also 
relevant: https://www.mail-archive.com/user@aries.apache.org/msg01207.html
 
Getting region's bundle context would require introducing a dependency on 
org.osgi.service.subsystem.Subsystem 
though, breaking the project for containers without Subsystem :-/.

Regards,
Jaseem



On Thursday, May 24, 2018 at 5:42:49 PM UTC+5:30, Stephan Siano wrote:
>
> Hi Jaseem,
>
> If you use the region context bundle for the extender, the extender will 
> extend its own region and its children, but it will not reach out of the 
> region. From my perspective this would be the correct semantics for scoped 
> subsystems, but I am not an expert here.
>
> Let's assume the following region graph:
>
> root - A
>  |
>  B - C
>  
> (the root region has two child regions (A and B) and B has a child region 
> C)
>
> An extender, which registers itself with the region context bundle's 
> context, will extend bundles in region B and C, but not in root or A. An 
> extender which registers in the root context would extend all contexts (but 
> it must be in the root context).
>
> Does this make sense?
>
> Best regards
> Stephan
>
> Am Donnerstag, 24. Mai 2018 09:02:32 UTC+2 schrieb Jaseem:
>>
>> I was doing some reading myself following Christoph's argument. Should an 
>> extender be aware of events inside a subsystem at all?  is it correct 
>> semantic for information to leak out of the region? 
>>
>> On Thu 24 May, 2018, 12:02 PM Stephan Siano,  wrote:
>>
>>> Hi,
>>>
>>> I had a look into the OSGi enterprise spec (134.9). It says that the 
>>> bundle context of the region context bundle is supposed to be used for 
>>> subsystem aware extenders, so the idea of implementing this would be to 
>>> register the bundle listener for the web extender with the region context 
>>> bundle's bundleContext if bundle 0 is unreachable.
>>>
>>> Best regards
>>> Stephan 
>>>
>>> Am Mittwoch, 23. Mai 2018 15:20:59 UTC+2 schrieb Stephan Siano:

 Hi,

 One problem with the bundleContext.getBundle(0) call is that it will 
 return null if pax web is not running in the root subsystem, in that case 
 the region context would be required instead.

 Concerning the composite subsystems:
 What happens if the composite subsystem exports servlets and filters 
 according to the Whiteboard pattern? That should work if a scoped 
 subsystem 
 exports a service that can be accessed by the whiteboard extender.

 What would be a sensible semantics of a war extender in combination 
 with scoped subsystems?

 Best regards
 Stephan

 Am Mittwoch, 23. Mai 2018 13:14:50 UTC+2 schrieb Jaseem:
>
> The subsystem we are using is of type COMPOSITE. That means we would 
> like these subsystem ESAs to use some of our common components and 
> pax.web 
> is one of them. We mean to share the core components like pax.web, apace 
> camel to be reusable. Thats our use case. 
>
> On Wednesday, May 23, 2018 at 3:23:23 PM UTC+5:30, Jaseem wrote:
>>
>> Hello, 
>>
>> Currently pax web extenders are not subsystem-aware. The extenders 
>> use BundleTracker/ServiceTracker on their own BundleContext. Events in 
>> scoped subsystems are not visible to these BundleContexts, hence Web 
>> bundles inside such subsystems don't get registered. 
>>
>> We can solve this by tracking on the system bundle context similar to 
>> this:
>>
>> systemBundleContext = context.getBundle(0).getBundleContext();
>> systemBundleContext.addBundleListener(this);
>> this.tracker = new BundleTracker<>(systemBundleContext, Bundle.ACTIVE
>>  | Bundle.STARTING, this);
>>
>> This is similar to 
>> https://bugs.eclipse.org/bugs/show_bug.cgi?id=514636
>> and https://issues.apache.org/jira/browse/CAMEL-8647 .
>>
>> I am currently on the activity of making WAR extender subsystem aware 
>> and I'm getting this exception when the WAR bundle is started/restarted: 
>>
>> java.lang.ClassNotFoundException: testWebPackage.testServlet
>> at java.net.URLClassLoader.findClass(URLClassLoader.java:443)
>> at java.lang.ClassLoader.loadClass(ClassLoader.java:490)
>> at java.lang.ClassLoader.loadClass(ClassLoader.java:423)
>> at org.apache.felix.framework.Felix.loadBundleClass(Felix.java:1927)
>> at 
>> 

Re: ops4j jenkins down?

2018-05-25 Thread Toni Menzel
By now its most likely that the CI Server is part of the data center outage
of our provider Hetzner in Germany: https://www.hetzner-status.de/en.html
This incident is ongoing.


* What is Developer Ergonomics **? *



*www.rebaze.de  | www.rebaze.com
 | @rebazeio *

On Fri, May 25, 2018 at 12:07 PM, Toni Menzel 
wrote:

> Yes, understandable ;)
> As a clarification, this server is one of the last managed infra for
> OPS4J.
> I'd like to OSS the software side of it (Infra as Code). Anyone want to
> help/start out with this?
>
> Just out of curiosity (and my general drift towards SaaS): What are the
> current needs for a privately managed CI that are not satisfied by
> platforms like circle CI, Cloudbees, Travis etc?
>
> Thanks. FYI will have slow progress since i only can access all this
> "in-between of everything".
>
> Toni
>
>
> * What is Developer Ergonomics **? *
>
>
>
> *www.rebaze.de  | www.rebaze.com
>  | @rebazeio *
>
> On Fri, May 25, 2018 at 11:54 AM, Grzegorz Grzybek 
> wrote:
>
>> Hello
>>
>> By the way - is there a chance for https:// ? I'm a bit reluctant
>> sending "Authorization: Basic xxx" over http://...
>>
>> regards
>> Grzegorz Grzybek
>>
>> 2018-05-25 9:58 GMT+02:00 Jean-Baptiste Onofré <
>> jeanbaptiste.ono...@gmail.com>:
>>
>>> Cool,
>>>
>>> Thanks Toni !
>>>
>>> Regards
>>> JB
>>>
>>> On 25/05/2018 09:46, Toni Menzel wrote:
>>>
>>> i am on it. Strange, the box just seems to be gone and away. Will let
>>> you know.
>>>
>>> * What is Developer Ergonomics **? *
>>>
>>>
>>>
>>> *www.rebaze.de  | www.rebaze.com
>>>  | @rebazeio *
>>>
>>> On Fri, May 25, 2018 at 8:40 AM, 'Achim Nierbeck' via OPS4J <
>>> ops4j@googlegroups.com> wrote:
>>>
 yeah it seems to be dead.
 I already pinged toni, he might know.

 regards, Achim

 2018-05-25 8:30 GMT+02:00 Jean-Baptiste Onofré <
 jeanbaptiste.ono...@gmail.com>:

> Thanks for the update Achim.
>
> Unfortunately, I can't access (using SSH) to the Jenkins server :/
>
> Regards
> JB
>
> On 25/05/2018 08:16, 'Achim Nierbeck' via OPS4J wrote:
>
> actually cirlce ci does have some issues with long running tests,
> which are needed for the integration tests.
> Therefore Jenkins is still the main build server.
> I'll check
>
> regards, Achim
>
> 2018-05-25 7:51 GMT+02:00 Jean-Baptiste Onofré <
> jeanbaptiste.ono...@gmail.com>:
>
>> Hi Stephan,
>>
>> AFAIR, we are using circleci now (at least for Pax Web):
>>
>> https://circleci.com/gh/ops4j
>>
>> Let me check if Jenkins is still used.
>>
>> Regards
>> JB
>>
>> On 25/05/2018 07:49, Stephan Siano wrote:
>>
>> Hi,
>>
>> Is it possible that the ops4j jenkins ci.ops4j.org is down? I get a
>> connection timeout if I try to access it.
>>
>> Best regards
>> Stephan
>> --
>> --
>> --
>> OPS4J - http://www.ops4j.org - ops4j@googlegroups.com
>>
>> ---
>> You received this message because you are subscribed to the Google
>> Groups "OPS4J" group.
>> To unsubscribe from this group and stop receiving emails from it,
>> send an email to ops4j+unsubscr...@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>>
>>
>> --
>> --
>> --
>> OPS4J - http://www.ops4j.org - ops4j@googlegroups.com
>>
>> ---
>> You received this message because you are subscribed to the Google
>> Groups "OPS4J" group.
>> To unsubscribe from this group and stop receiving emails from it,
>> send an email to ops4j+unsubscr...@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> --
>
> Apache Member
> Apache Karaf  Committer & PMC
> OPS4J Pax Web 
> Committer & Project Lead
> blog 
> Co-Author of Apache Karaf Cookbook 
>
> Software Architect / Project Manager / Scrum Master
>
> --
> --
> --
> OPS4J - http://www.ops4j.org - ops4j@googlegroups.com
>
> ---
> You received this message because you are subscribed to the Google
> Groups "OPS4J" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to ops4j+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>
>
> --
> --
> --
> 

Re: ops4j jenkins down?

2018-05-25 Thread Toni Menzel
Yes, understandable ;)
As a clarification, this server is one of the last managed infra for OPS4J.
I'd like to OSS the software side of it (Infra as Code). Anyone want to
help/start out with this?

Just out of curiosity (and my general drift towards SaaS): What are the
current needs for a privately managed CI that are not satisfied by
platforms like circle CI, Cloudbees, Travis etc?

Thanks. FYI will have slow progress since i only can access all this
"in-between of everything".

Toni


* What is Developer Ergonomics **? *



*www.rebaze.de  | www.rebaze.com
 | @rebazeio *

On Fri, May 25, 2018 at 11:54 AM, Grzegorz Grzybek 
wrote:

> Hello
>
> By the way - is there a chance for https:// ? I'm a bit reluctant sending
> "Authorization: Basic xxx" over http://...
>
> regards
> Grzegorz Grzybek
>
> 2018-05-25 9:58 GMT+02:00 Jean-Baptiste Onofré <
> jeanbaptiste.ono...@gmail.com>:
>
>> Cool,
>>
>> Thanks Toni !
>>
>> Regards
>> JB
>>
>> On 25/05/2018 09:46, Toni Menzel wrote:
>>
>> i am on it. Strange, the box just seems to be gone and away. Will let you
>> know.
>>
>> * What is Developer Ergonomics **? *
>>
>>
>>
>> *www.rebaze.de  | www.rebaze.com
>>  | @rebazeio *
>>
>> On Fri, May 25, 2018 at 8:40 AM, 'Achim Nierbeck' via OPS4J <
>> ops4j@googlegroups.com> wrote:
>>
>>> yeah it seems to be dead.
>>> I already pinged toni, he might know.
>>>
>>> regards, Achim
>>>
>>> 2018-05-25 8:30 GMT+02:00 Jean-Baptiste Onofré <
>>> jeanbaptiste.ono...@gmail.com>:
>>>
 Thanks for the update Achim.

 Unfortunately, I can't access (using SSH) to the Jenkins server :/

 Regards
 JB

 On 25/05/2018 08:16, 'Achim Nierbeck' via OPS4J wrote:

 actually cirlce ci does have some issues with long running tests, which
 are needed for the integration tests.
 Therefore Jenkins is still the main build server.
 I'll check

 regards, Achim

 2018-05-25 7:51 GMT+02:00 Jean-Baptiste Onofré <
 jeanbaptiste.ono...@gmail.com>:

> Hi Stephan,
>
> AFAIR, we are using circleci now (at least for Pax Web):
>
> https://circleci.com/gh/ops4j
>
> Let me check if Jenkins is still used.
>
> Regards
> JB
>
> On 25/05/2018 07:49, Stephan Siano wrote:
>
> Hi,
>
> Is it possible that the ops4j jenkins ci.ops4j.org is down? I get a
> connection timeout if I try to access it.
>
> Best regards
> Stephan
> --
> --
> --
> OPS4J - http://www.ops4j.org - ops4j@googlegroups.com
>
> ---
> You received this message because you are subscribed to the Google
> Groups "OPS4J" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to ops4j+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>
>
> --
> --
> --
> OPS4J - http://www.ops4j.org - ops4j@googlegroups.com
>
> ---
> You received this message because you are subscribed to the Google
> Groups "OPS4J" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to ops4j+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>



 --

 Apache Member
 Apache Karaf  Committer & PMC
 OPS4J Pax Web 
 Committer & Project Lead
 blog 
 Co-Author of Apache Karaf Cookbook 

 Software Architect / Project Manager / Scrum Master

 --
 --
 --
 OPS4J - http://www.ops4j.org - ops4j@googlegroups.com

 ---
 You received this message because you are subscribed to the Google
 Groups "OPS4J" group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to ops4j+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


 --
 --
 --
 OPS4J - http://www.ops4j.org - ops4j@googlegroups.com

 ---
 You received this message because you are subscribed to the Google
 Groups "OPS4J" group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to ops4j+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.

>>>
>>>
>>>
>>> --
>>>
>>> Apache Member
>>> Apache Karaf  Committer & PMC
>>> OPS4J Pax Web  Committer
>>> & Project Lead
>>> blog 
>>> Co-Author of Apache 

Re: ops4j jenkins down?

2018-05-25 Thread Grzegorz Grzybek
Hello

By the way - is there a chance for https:// ? I'm a bit reluctant sending
"Authorization: Basic xxx" over http://...

regards
Grzegorz Grzybek

2018-05-25 9:58 GMT+02:00 Jean-Baptiste Onofré <
jeanbaptiste.ono...@gmail.com>:

> Cool,
>
> Thanks Toni !
>
> Regards
> JB
>
> On 25/05/2018 09:46, Toni Menzel wrote:
>
> i am on it. Strange, the box just seems to be gone and away. Will let you
> know.
>
> * What is Developer Ergonomics **? *
>
>
>
> *www.rebaze.de  | www.rebaze.com
>  | @rebazeio *
>
> On Fri, May 25, 2018 at 8:40 AM, 'Achim Nierbeck' via OPS4J <
> ops4j@googlegroups.com> wrote:
>
>> yeah it seems to be dead.
>> I already pinged toni, he might know.
>>
>> regards, Achim
>>
>> 2018-05-25 8:30 GMT+02:00 Jean-Baptiste Onofré <
>> jeanbaptiste.ono...@gmail.com>:
>>
>>> Thanks for the update Achim.
>>>
>>> Unfortunately, I can't access (using SSH) to the Jenkins server :/
>>>
>>> Regards
>>> JB
>>>
>>> On 25/05/2018 08:16, 'Achim Nierbeck' via OPS4J wrote:
>>>
>>> actually cirlce ci does have some issues with long running tests, which
>>> are needed for the integration tests.
>>> Therefore Jenkins is still the main build server.
>>> I'll check
>>>
>>> regards, Achim
>>>
>>> 2018-05-25 7:51 GMT+02:00 Jean-Baptiste Onofré <
>>> jeanbaptiste.ono...@gmail.com>:
>>>
 Hi Stephan,

 AFAIR, we are using circleci now (at least for Pax Web):

 https://circleci.com/gh/ops4j

 Let me check if Jenkins is still used.

 Regards
 JB

 On 25/05/2018 07:49, Stephan Siano wrote:

 Hi,

 Is it possible that the ops4j jenkins ci.ops4j.org is down? I get a
 connection timeout if I try to access it.

 Best regards
 Stephan
 --
 --
 --
 OPS4J - http://www.ops4j.org - ops4j@googlegroups.com

 ---
 You received this message because you are subscribed to the Google
 Groups "OPS4J" group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to ops4j+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


 --
 --
 --
 OPS4J - http://www.ops4j.org - ops4j@googlegroups.com

 ---
 You received this message because you are subscribed to the Google
 Groups "OPS4J" group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to ops4j+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.

>>>
>>>
>>>
>>> --
>>>
>>> Apache Member
>>> Apache Karaf  Committer & PMC
>>> OPS4J Pax Web  Committer
>>> & Project Lead
>>> blog 
>>> Co-Author of Apache Karaf Cookbook 
>>>
>>> Software Architect / Project Manager / Scrum Master
>>>
>>> --
>>> --
>>> --
>>> OPS4J - http://www.ops4j.org - ops4j@googlegroups.com
>>>
>>> ---
>>> You received this message because you are subscribed to the Google
>>> Groups "OPS4J" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to ops4j+unsubscr...@googlegroups.com.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>>
>>> --
>>> --
>>> --
>>> OPS4J - http://www.ops4j.org - ops4j@googlegroups.com
>>>
>>> ---
>>> You received this message because you are subscribed to the Google
>>> Groups "OPS4J" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to ops4j+unsubscr...@googlegroups.com.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>
>>
>> --
>>
>> Apache Member
>> Apache Karaf  Committer & PMC
>> OPS4J Pax Web  Committer
>> & Project Lead
>> blog 
>> Co-Author of Apache Karaf Cookbook 
>>
>> Software Architect / Project Manager / Scrum Master
>>
>> --
>> --
>> --
>> OPS4J - http://www.ops4j.org - ops4j@googlegroups.com
>>
>> ---
>> You received this message because you are subscribed to the Google Groups
>> "OPS4J" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to ops4j+unsubscr...@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
> --
> --
> --
> OPS4J - http://www.ops4j.org - ops4j@googlegroups.com
>
> ---
> You received this message because you are subscribed to the Google Groups
> "OPS4J" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to ops4j+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>
>
> --
> --
> --
> OPS4J - http://www.ops4j.org - 

Re: ops4j jenkins down?

2018-05-25 Thread Toni Menzel
i am on it. Strange, the box just seems to be gone and away. Will let you
know.

* What is Developer Ergonomics **? *



*www.rebaze.de  | www.rebaze.com
 | @rebazeio *

On Fri, May 25, 2018 at 8:40 AM, 'Achim Nierbeck' via OPS4J <
ops4j@googlegroups.com> wrote:

> yeah it seems to be dead.
> I already pinged toni, he might know.
>
> regards, Achim
>
> 2018-05-25 8:30 GMT+02:00 Jean-Baptiste Onofré <
> jeanbaptiste.ono...@gmail.com>:
>
>> Thanks for the update Achim.
>>
>> Unfortunately, I can't access (using SSH) to the Jenkins server :/
>>
>> Regards
>> JB
>>
>> On 25/05/2018 08:16, 'Achim Nierbeck' via OPS4J wrote:
>>
>> actually cirlce ci does have some issues with long running tests, which
>> are needed for the integration tests.
>> Therefore Jenkins is still the main build server.
>> I'll check
>>
>> regards, Achim
>>
>> 2018-05-25 7:51 GMT+02:00 Jean-Baptiste Onofré <
>> jeanbaptiste.ono...@gmail.com>:
>>
>>> Hi Stephan,
>>>
>>> AFAIR, we are using circleci now (at least for Pax Web):
>>>
>>> https://circleci.com/gh/ops4j
>>>
>>> Let me check if Jenkins is still used.
>>>
>>> Regards
>>> JB
>>>
>>> On 25/05/2018 07:49, Stephan Siano wrote:
>>>
>>> Hi,
>>>
>>> Is it possible that the ops4j jenkins ci.ops4j.org is down? I get a
>>> connection timeout if I try to access it.
>>>
>>> Best regards
>>> Stephan
>>> --
>>> --
>>> --
>>> OPS4J - http://www.ops4j.org - ops4j@googlegroups.com
>>>
>>> ---
>>> You received this message because you are subscribed to the Google
>>> Groups "OPS4J" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to ops4j+unsubscr...@googlegroups.com.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>>
>>> --
>>> --
>>> --
>>> OPS4J - http://www.ops4j.org - ops4j@googlegroups.com
>>>
>>> ---
>>> You received this message because you are subscribed to the Google
>>> Groups "OPS4J" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to ops4j+unsubscr...@googlegroups.com.
>>> For more options, visit https://groups.google.com/d/optout.
>>>
>>
>>
>>
>> --
>>
>> Apache Member
>> Apache Karaf  Committer & PMC
>> OPS4J Pax Web  Committer
>> & Project Lead
>> blog 
>> Co-Author of Apache Karaf Cookbook 
>>
>> Software Architect / Project Manager / Scrum Master
>>
>> --
>> --
>> --
>> OPS4J - http://www.ops4j.org - ops4j@googlegroups.com
>>
>> ---
>> You received this message because you are subscribed to the Google Groups
>> "OPS4J" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to ops4j+unsubscr...@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>>
>>
>> --
>> --
>> --
>> OPS4J - http://www.ops4j.org - ops4j@googlegroups.com
>>
>> ---
>> You received this message because you are subscribed to the Google Groups
>> "OPS4J" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to ops4j+unsubscr...@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> --
>
> Apache Member
> Apache Karaf  Committer & PMC
> OPS4J Pax Web  Committer &
> Project Lead
> blog 
> Co-Author of Apache Karaf Cookbook 
>
> Software Architect / Project Manager / Scrum Master
>
> --
> --
> --
> OPS4J - http://www.ops4j.org - ops4j@googlegroups.com
>
> ---
> You received this message because you are subscribed to the Google Groups
> "OPS4J" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to ops4j+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
-- 
--
OPS4J - http://www.ops4j.org - ops4j@googlegroups.com

--- 
You received this message because you are subscribed to the Google Groups 
"OPS4J" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to ops4j+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ops4j jenkins down?

2018-05-25 Thread 'Achim Nierbeck' via OPS4J
yeah it seems to be dead.
I already pinged toni, he might know.

regards, Achim

2018-05-25 8:30 GMT+02:00 Jean-Baptiste Onofré <
jeanbaptiste.ono...@gmail.com>:

> Thanks for the update Achim.
>
> Unfortunately, I can't access (using SSH) to the Jenkins server :/
>
> Regards
> JB
>
> On 25/05/2018 08:16, 'Achim Nierbeck' via OPS4J wrote:
>
> actually cirlce ci does have some issues with long running tests, which
> are needed for the integration tests.
> Therefore Jenkins is still the main build server.
> I'll check
>
> regards, Achim
>
> 2018-05-25 7:51 GMT+02:00 Jean-Baptiste Onofré <
> jeanbaptiste.ono...@gmail.com>:
>
>> Hi Stephan,
>>
>> AFAIR, we are using circleci now (at least for Pax Web):
>>
>> https://circleci.com/gh/ops4j
>>
>> Let me check if Jenkins is still used.
>>
>> Regards
>> JB
>>
>> On 25/05/2018 07:49, Stephan Siano wrote:
>>
>> Hi,
>>
>> Is it possible that the ops4j jenkins ci.ops4j.org is down? I get a
>> connection timeout if I try to access it.
>>
>> Best regards
>> Stephan
>> --
>> --
>> --
>> OPS4J - http://www.ops4j.org - ops4j@googlegroups.com
>>
>> ---
>> You received this message because you are subscribed to the Google Groups
>> "OPS4J" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to ops4j+unsubscr...@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>>
>>
>> --
>> --
>> --
>> OPS4J - http://www.ops4j.org - ops4j@googlegroups.com
>>
>> ---
>> You received this message because you are subscribed to the Google Groups
>> "OPS4J" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to ops4j+unsubscr...@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> --
>
> Apache Member
> Apache Karaf  Committer & PMC
> OPS4J Pax Web  Committer &
> Project Lead
> blog 
> Co-Author of Apache Karaf Cookbook 
>
> Software Architect / Project Manager / Scrum Master
>
> --
> --
> --
> OPS4J - http://www.ops4j.org - ops4j@googlegroups.com
>
> ---
> You received this message because you are subscribed to the Google Groups
> "OPS4J" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to ops4j+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>
>
> --
> --
> --
> OPS4J - http://www.ops4j.org - ops4j@googlegroups.com
>
> ---
> You received this message because you are subscribed to the Google Groups
> "OPS4J" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to ops4j+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>



-- 

Apache Member
Apache Karaf  Committer & PMC
OPS4J Pax Web  Committer &
Project Lead
blog 
Co-Author of Apache Karaf Cookbook 

Software Architect / Project Manager / Scrum Master

-- 
-- 
--
OPS4J - http://www.ops4j.org - ops4j@googlegroups.com

--- 
You received this message because you are subscribed to the Google Groups 
"OPS4J" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to ops4j+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ops4j jenkins down?

2018-05-25 Thread 'Achim Nierbeck' via OPS4J
yep, it seems to be gone for good.
I'm not able to ssh into it.

regards, achim

2018-05-25 8:16 GMT+02:00 Achim Nierbeck :

> actually cirlce ci does have some issues with long running tests, which
> are needed for the integration tests.
> Therefore Jenkins is still the main build server.
> I'll check
>
> regards, Achim
>
> 2018-05-25 7:51 GMT+02:00 Jean-Baptiste Onofré <
> jeanbaptiste.ono...@gmail.com>:
>
>> Hi Stephan,
>>
>> AFAIR, we are using circleci now (at least for Pax Web):
>>
>> https://circleci.com/gh/ops4j
>>
>> Let me check if Jenkins is still used.
>>
>> Regards
>> JB
>>
>> On 25/05/2018 07:49, Stephan Siano wrote:
>>
>> Hi,
>>
>> Is it possible that the ops4j jenkins ci.ops4j.org is down? I get a
>> connection timeout if I try to access it.
>>
>> Best regards
>> Stephan
>> --
>> --
>> --
>> OPS4J - http://www.ops4j.org - ops4j@googlegroups.com
>>
>> ---
>> You received this message because you are subscribed to the Google Groups
>> "OPS4J" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to ops4j+unsubscr...@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>>
>>
>> --
>> --
>> --
>> OPS4J - http://www.ops4j.org - ops4j@googlegroups.com
>>
>> ---
>> You received this message because you are subscribed to the Google Groups
>> "OPS4J" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to ops4j+unsubscr...@googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> --
>
> Apache Member
> Apache Karaf  Committer & PMC
> OPS4J Pax Web  Committer &
> Project Lead
> blog 
> Co-Author of Apache Karaf Cookbook 
>
> Software Architect / Project Manager / Scrum Master
>
>


-- 

Apache Member
Apache Karaf  Committer & PMC
OPS4J Pax Web  Committer &
Project Lead
blog 
Co-Author of Apache Karaf Cookbook 

Software Architect / Project Manager / Scrum Master

-- 
-- 
--
OPS4J - http://www.ops4j.org - ops4j@googlegroups.com

--- 
You received this message because you are subscribed to the Google Groups 
"OPS4J" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to ops4j+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.