Re: [Gora] builds.apache.org

2021-03-27 Thread lewis john mcgibbney
Hi Damien,

On Sat, Mar 27, 2021 at 16:40  wrote:

>
> Hi all !
>
> I'm trying to catch up on the emails on this list regarding a subject that
> interests me : Gora Continuous Integration :)
>
> I'm a little confused about what we're trying to achieve here:
>
> Last year, I've spend some time to setup a multi-branch Jenkins pipeline
>  which is
> properly setup by Jenkinsfile located inside our git repository.
> Lewis just added a manual Jenkins job on master branch
>  which seems
> (AFAIK) to duplicate the purpose of the previous pipeline.
>
> For my point of view, it seems easier and more maintainable to modify
> existing Jenkinsfile in order to add support for artifacts upload, isn't it
> ?


I totally agree with this. I was not aware that this was driven by the
Jenkinsfile that you created. Let’s just update that and remove the job I
created.



> There is a Deploying Artifacts
> <
> https://cwiki.apache.org/confluence/display/INFRA/Multibranch+Pipeline+recipes#MultibranchPipelinerecipes-DeployingArtifacts
> >
> section on Multibranch Pipeline recipes documentation from INFRA. Maybe
> someone can give it a try ?
>

I’ll certainly give it a go yes. I’ll
Report back here.
lewismc

>
> --
http://home.apache.org/~lewismc/
http://people.apache.org/keys/committer/lewismc


Re: [Gora] builds.apache.org

2021-03-27 Thread Damien Raude-Morvan
Hi Alfonso !

Le sam. 27 mars 2021 à 21:36, Alfonso Nishikawa 
a écrit :

> Right now I see that CouchDB fails
>
> org.apache.gora.couchdb.store.TestCouchDBStore.org.apache.gora.couchdb.store.TestCouchDBStore
>
> Can't get Docker image: RemoteDockerImage(imageName=couchdb:1.6.1,
> imagePullPolicy=DefaultPullPolicy())
> Caused by: com.github.dockerjava.api.exception.NotFoundException:
> {"message":"No such image: testcontainersofficial/ryuk:0.3.0"}
>

I've created GORA-674  for
this particular issu. As described in JIRA, it seems to be linked to a
change in Docker Runtime API and testcontainers 1.14.

I'll submit a fix soon.

Regards,
-- 
Damien


[jira] [Commented] (GORA-674) Failure of testcontainers-java on recent Docker runtime

2021-03-27 Thread Damien Raude-Morvan (Jira)


[ 
https://issues.apache.org/jira/browse/GORA-674?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17310084#comment-17310084
 ] 

Damien Raude-Morvan commented on GORA-674:
--

It seems to be linked to a recent change on Docker Runtime API (local Docker 
installation) which to seems to be unsupported by *testcontainers 1.14* that we 
currently use everywhere in our test.

[https://github.com/testcontainers/testcontainers-java/issues/3574]
{quote}Ok, "filter by image name" query parameter in {{/images/json}} got 
removed on Docker's API.
Although the query param was deprecated (I wish we could run Docker in a strict 
API mode - will explore)
Sorry for this. We will release a hotfix ASAP. Meanwhile, consider pre-pulling 
{{testcontainers/ryuk:0.3.0}} and {{alpine:3.5}} :(
{quote}
I will take care of this upgrade to testcontainers 1.15

> Failure of testcontainers-java on recent Docker runtime
> ---
>
> Key: GORA-674
> URL: https://issues.apache.org/jira/browse/GORA-674
> Project: Apache Gora
>  Issue Type: Bug
>  Components: build process
>Reporter: Damien Raude-Morvan
>Assignee: Damien Raude-Morvan
>Priority: Major
>  Labels: docker, testcontainers
>
> As reported by [~alfonso.nishikawa] 
>  Right now I see that CouchDB fails
> {code:java}
> org.apache.gora.couchdb.store.TestCouchDBStore.org.apache.gora.couchdb.store.TestCouchDBStore
>  
>  Can't get Docker image: RemoteDockerImage(imageName=couchdb:1.6.1,
>  imagePullPolicy=DefaultPullPolicy())
>  Caused by: com.github.dockerjava.api.exception.NotFoundException:
>  {"message":"No such image: testcontainersofficial/ryuk:0.3.0"}{code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Created] (GORA-674) Failure of testcontainers-java on recent Docker runtime

2021-03-27 Thread Damien Raude-Morvan (Jira)
Damien Raude-Morvan created GORA-674:


 Summary: Failure of testcontainers-java on recent Docker runtime
 Key: GORA-674
 URL: https://issues.apache.org/jira/browse/GORA-674
 Project: Apache Gora
  Issue Type: Bug
  Components: build process
Reporter: Damien Raude-Morvan
Assignee: Damien Raude-Morvan


As reported by [~alfonso.nishikawa] 


 Right now I see that CouchDB fails
{code:java}
org.apache.gora.couchdb.store.TestCouchDBStore.org.apache.gora.couchdb.store.TestCouchDBStore
 
 Can't get Docker image: RemoteDockerImage(imageName=couchdb:1.6.1,
 imagePullPolicy=DefaultPullPolicy())
 Caused by: com.github.dockerjava.api.exception.NotFoundException:
 {"message":"No such image: testcontainersofficial/ryuk:0.3.0"}{code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


Re: [Gora] builds.apache.org

2021-03-27 Thread Damien Raude-Morvan
Hi all !

I'm trying to catch up on the emails on this list regarding a subject that
interests me : Gora Continuous Integration :)

I'm a little confused about what we're trying to achieve here:

Last year, I've spend some time to setup a multi-branch Jenkins pipeline
 which is
properly setup by Jenkinsfile located inside our git repository.
Lewis just added a manual Jenkins job on master branch
 which seems
(AFAIK) to duplicate the purpose of the previous pipeline.

For my point of view, it seems easier and more maintainable to modify
existing Jenkinsfile in order to add support for artifacts upload, isn't it
?
There is a Deploying Artifacts

section on Multibranch Pipeline recipes documentation from INFRA. Maybe
someone can give it a try ?

Regards !

Le sam. 27 mars 2021 à 21:36, Alfonso Nishikawa 
a écrit :

> Hi, Lewis!
>
> Thank you very much! I confirm I can change the job, and I updated 2
> options: I set to @daily because the build takes more than 1 hour, and set
> the timeout to 4 hours :)
>
> Right now I see that CouchDB fails
>
> org.apache.gora.couchdb.store.TestCouchDBStore.org.apache.gora.couchdb.store.TestCouchDBStore
>
> Can't get Docker image: RemoteDockerImage(imageName=couchdb:1.6.1,
> imagePullPolicy=DefaultPullPolicy())
> Caused by: com.github.dockerjava.api.exception.NotFoundException:
> {"message":"No such image: testcontainersofficial/ryuk:0.3.0"}
>
> but let's see if it works after fixing that issue :)
>
> Thanks a lot again!
>
> Regards,
> Alfonso Nishikawa
>
>
> El sáb, 27 mar 2021 a las 15:55, lewis john mcgibbney ( >)
> escribió:
>
> > Hi Folks,
> > I went ahead and created a build for master.
> > https://ci-builds.apache.org/job/Gora/job/gora-master/1/
> > Alfonso, Kevin or anyone else you should have access to the builds. If
> you
> > do not please ask infra on Slack or via email/JIRA. No access is
> privilege.
> > We should all have the same access.
> > Thanks guys, good work.
> > lewismc
> >
> > On Sat, Mar 27, 2021 at 5:20 AM Alfonso Nishikawa <
> > alfonso.nishik...@gmail.com> wrote:
> >
> > > Hi, Kevin.
> > >
> > > You are right :( probably only Lewis has access.
> > > Our current pipeline does not publish the snapshots to nexus. Last
> > > snapshot jar is from around june of last year. I can't configure it
> > because
> > > I don't know how to make Jenkins deploy the snapshots jars from master
> > > buils :( (I don't event know how to deploy the official jars)
> > >
> > > Regards,
> > >
> > > Alfonso
> > >
> > >
> > > El sáb, 27 mar 2021 a las 9:57, Kevin Ratnasekera (<
> > > djkevincr1...@gmail.com>) escribió:
> > >
> > >> Hi Alfonso,
> > >>
> > >> I just checked the Any23 job configuration link, I get the same error
> > >> related to missing permissions. I think only committers of the
> > >> particular project are allowed to read / write access to build
> > >> configurations.
> > >>
> > >> Let's see whether we can find issues with our current gora-pipeline
> > >> configuration.
> > >>
> > >> Regards
> > >> Kevin
> > >>
> > >>
> >
>


-- 
Damien


Re: [Gora] builds.apache.org

2021-03-27 Thread Alfonso Nishikawa
Hi, Lewis!

Thank you very much! I confirm I can change the job, and I updated 2
options: I set to @daily because the build takes more than 1 hour, and set
the timeout to 4 hours :)

Right now I see that CouchDB fails
org.apache.gora.couchdb.store.TestCouchDBStore.org.apache.gora.couchdb.store.TestCouchDBStore

Can't get Docker image: RemoteDockerImage(imageName=couchdb:1.6.1,
imagePullPolicy=DefaultPullPolicy())
Caused by: com.github.dockerjava.api.exception.NotFoundException:
{"message":"No such image: testcontainersofficial/ryuk:0.3.0"}

but let's see if it works after fixing that issue :)

Thanks a lot again!

Regards,
Alfonso Nishikawa


El sáb, 27 mar 2021 a las 15:55, lewis john mcgibbney ()
escribió:

> Hi Folks,
> I went ahead and created a build for master.
> https://ci-builds.apache.org/job/Gora/job/gora-master/1/
> Alfonso, Kevin or anyone else you should have access to the builds. If you
> do not please ask infra on Slack or via email/JIRA. No access is privilege.
> We should all have the same access.
> Thanks guys, good work.
> lewismc
>
> On Sat, Mar 27, 2021 at 5:20 AM Alfonso Nishikawa <
> alfonso.nishik...@gmail.com> wrote:
>
> > Hi, Kevin.
> >
> > You are right :( probably only Lewis has access.
> > Our current pipeline does not publish the snapshots to nexus. Last
> > snapshot jar is from around june of last year. I can't configure it
> because
> > I don't know how to make Jenkins deploy the snapshots jars from master
> > buils :( (I don't event know how to deploy the official jars)
> >
> > Regards,
> >
> > Alfonso
> >
> >
> > El sáb, 27 mar 2021 a las 9:57, Kevin Ratnasekera (<
> > djkevincr1...@gmail.com>) escribió:
> >
> >> Hi Alfonso,
> >>
> >> I just checked the Any23 job configuration link, I get the same error
> >> related to missing permissions. I think only committers of the
> >> particular project are allowed to read / write access to build
> >> configurations.
> >>
> >> Let's see whether we can find issues with our current gora-pipeline
> >> configuration.
> >>
> >> Regards
> >> Kevin
> >>
> >>
>


Re: [Gora] builds.apache.org

2021-03-27 Thread lewis john mcgibbney
Hi Folks,
I went ahead and created a build for master.
https://ci-builds.apache.org/job/Gora/job/gora-master/1/
Alfonso, Kevin or anyone else you should have access to the builds. If you
do not please ask infra on Slack or via email/JIRA. No access is privilege.
We should all have the same access.
Thanks guys, good work.
lewismc

On Sat, Mar 27, 2021 at 5:20 AM Alfonso Nishikawa <
alfonso.nishik...@gmail.com> wrote:

> Hi, Kevin.
>
> You are right :( probably only Lewis has access.
> Our current pipeline does not publish the snapshots to nexus. Last
> snapshot jar is from around june of last year. I can't configure it because
> I don't know how to make Jenkins deploy the snapshots jars from master
> buils :( (I don't event know how to deploy the official jars)
>
> Regards,
>
> Alfonso
>
>
> El sáb, 27 mar 2021 a las 9:57, Kevin Ratnasekera (<
> djkevincr1...@gmail.com>) escribió:
>
>> Hi Alfonso,
>>
>> I just checked the Any23 job configuration link, I get the same error
>> related to missing permissions. I think only committers of the
>> particular project are allowed to read / write access to build
>> configurations.
>>
>> Let's see whether we can find issues with our current gora-pipeline
>> configuration.
>>
>> Regards
>> Kevin
>>
>>


Re: [Gora] builds.apache.org

2021-03-27 Thread Alfonso Nishikawa
Hi, Kevin.

You are right :( probably only Lewis has access.
Our current pipeline does not publish the snapshots to nexus. Last snapshot
jar is from around june of last year. I can't configure it because I don't
know how to make Jenkins deploy the snapshots jars from master buils :( (I
don't event know how to deploy the official jars)

Regards,

Alfonso


El sáb, 27 mar 2021 a las 9:57, Kevin Ratnasekera ()
escribió:

> Hi Alfonso,
>
> I just checked the Any23 job configuration link, I get the same error
> related to missing permissions. I think only committers of the
> particular project are allowed to read / write access to build
> configurations.
>
> Let's see whether we can find issues with our current gora-pipeline
> configuration.
>
> Regards
> Kevin
>
> On Sat, Mar 27, 2021 at 2:54 PM Alfonso Nishikawa <
> alfonso.nishik...@gmail.com> wrote:
>
>> Hi!
>>
>> It seems I dont have the permission task/configure to access
>> https://ci-builds.apache.org/job/Any23/job/any23-master-jdk8/configure :(
>> May I get the permissions? :)
>>
>> Thank you!
>>
>> Regards,
>> Alfonso
>>
>>
>> El mar, 23 mar 2021 a las 7:54, Alfonso Nishikawa (<
>> alfonso.nishik...@gmail.com>) escribió:
>>
>>> Hi, Lewis!
>>>
>>> I will take a look and comment if I have any issue.
>>>
>>> Thank you!! :)
>>>
>>> Regards,
>>> Alfonso
>>>
>>> El mar., 23 mar. 2021 1:12, Lewis John McGibbney 
>>> escribió:
>>>
 Hi Alfonso,
 The Gora builds now reside on the Cloudbees Jenkins server (which I
 think you already figured out)
 https://ci-builds.apache.org/job/Gora/job/gora-pipeline/job/master/
 I don't have time to look into configuring the job right now but if you
 look at the Any23 build we did a while back, then you can basically copy it
 for the Gora master build
 https://ci-builds.apache.org/job/Any23/job/any23-master-jdk8/configure
 I hope this makes sense.
 lewismc

 On 2021/03/13 16:48:49, Alfonso Nishikawa 
 wrote:
 > Hi!
 >
 > I am reopening this topic because I found that the jars master
 x.x-SNAPSHOT
 > are not being published to the repository of snapshots at the apache
 > repository
 >
 https://repository.apache.org/#view-repositories;snapshots-group~browsestorage~org/apache/gora/gora-hbase/1.0-SNAPSHOT/
 > since Jun 2020.
 >
 > I guess we would need to add a "deploy" step to the Jenkins file (see
 > https://github.com/apache/gora/pull/229 ,
 > https://www.jenkins.io/doc/book/pipeline/jenkinsfile/) but does
 anyone
 > exactly what command is it? Or how to configure it? Maybe I have to
 ask
 > INFRA?
 >
 > Let me know :)
 >
 > Thank you!
 >
 > Regards,
 > Alfonso Nishikawa
 >
 >
 >
 >
 > El sáb, 31 oct 2020 a las 17:28, Alfonso Nishikawa (<
 > alfonso.nishik...@gmail.com>) escribió:
 >
 > > All merits go for Damien :D Thanks too!
 > >
 > > Best regards,
 > >
 > > Alfonso Nishikawa
 > >
 > > El sáb., 31 oct. 2020 a las 16:59, Kevin Ratnasekera (<
 > > djkevincr1...@gmail.com>) escribió:
 > >
 > >> Hi Damien/Alfonso,
 > >>
 > >> I just noticed the jenkins build system works just fine. Thank you
 for
 > >> setting up builds again. :)
 > >>
 > >> Regards
 > >> Kevin
 > >>
 > >> On Tue, Oct 27, 2020 at 5:27 AM Alfonso Nishikawa <
 > >> alfonso.nishik...@gmail.com> wrote:
 > >>
 > >>> Hi, Damien.
 > >>>
 > >>> I really don't know anything about how to configure Jenkins, so
 > >>> everything
 > >>> seems ok to me n_nU
 > >>>
 > >>> Thank you!
 > >>>
 > >>> Best regards,
 > >>>
 > >>> Alfonso Nishikawa
 > >>>
 > >>> El sáb., 24 oct. 2020 a las 21:15, Damien Raude-Morvan (<
 > >>> draz...@drazzib.com>)
 > >>> escribió:
 > >>>
 > >>> > Hi Kevin & Alfonso !
 > >>> >
 > >>> > I've pretty good experience regarding creating Jenkinsfile for
 Java
 > >>> > projects. I think this is the way to go for Gora.
 > >>> >
 > >>> > This approach is described on ASF wiki : Multibranch Pipeline
 recipes
 > >>> > <
 > >>> >
 > >>>
 https://cwiki.apache.org/confluence/display/INFRA/Multibranch+Pipeline+recipes
 > >>> > >
 > >>> >
 > >>> > I've created a new issue (GORA-668
 > >>> > ) on this
 subject
 > >>> >
 > >>> > Regards,
 > >>> >
 > >>> > Le sam. 24 oct. 2020 à 14:46, Kevin Ratnasekera <
 > >>> djkevincr1...@gmail.com>
 > >>> > a
 > >>> > écrit :
 > >>> >
 > >>> > > Hi Alfonso,
 > >>> > >
 > >>> > > Apologize for taking time to respond to your email. Thank you
 for
 > >>> taking
 > >>> > > over this and creating the ticket. Let's see what we can do,
 once
 > >>> INFRA
 > >>> > > responds back to the ticket.
 > >>> > >
 > >>> > > Regards
 > 

Re: [Gora] builds.apache.org

2021-03-27 Thread Kevin Ratnasekera
Hi Alfonso,

I just checked the Any23 job configuration link, I get the same error
related to missing permissions. I think only committers of the
particular project are allowed to read / write access to build
configurations.

Let's see whether we can find issues with our current gora-pipeline
configuration.

Regards
Kevin

On Sat, Mar 27, 2021 at 2:54 PM Alfonso Nishikawa <
alfonso.nishik...@gmail.com> wrote:

> Hi!
>
> It seems I dont have the permission task/configure to access
> https://ci-builds.apache.org/job/Any23/job/any23-master-jdk8/configure :(
> May I get the permissions? :)
>
> Thank you!
>
> Regards,
> Alfonso
>
>
> El mar, 23 mar 2021 a las 7:54, Alfonso Nishikawa (<
> alfonso.nishik...@gmail.com>) escribió:
>
>> Hi, Lewis!
>>
>> I will take a look and comment if I have any issue.
>>
>> Thank you!! :)
>>
>> Regards,
>> Alfonso
>>
>> El mar., 23 mar. 2021 1:12, Lewis John McGibbney 
>> escribió:
>>
>>> Hi Alfonso,
>>> The Gora builds now reside on the Cloudbees Jenkins server (which I
>>> think you already figured out)
>>> https://ci-builds.apache.org/job/Gora/job/gora-pipeline/job/master/
>>> I don't have time to look into configuring the job right now but if you
>>> look at the Any23 build we did a while back, then you can basically copy it
>>> for the Gora master build
>>> https://ci-builds.apache.org/job/Any23/job/any23-master-jdk8/configure
>>> I hope this makes sense.
>>> lewismc
>>>
>>> On 2021/03/13 16:48:49, Alfonso Nishikawa 
>>> wrote:
>>> > Hi!
>>> >
>>> > I am reopening this topic because I found that the jars master
>>> x.x-SNAPSHOT
>>> > are not being published to the repository of snapshots at the apache
>>> > repository
>>> >
>>> https://repository.apache.org/#view-repositories;snapshots-group~browsestorage~org/apache/gora/gora-hbase/1.0-SNAPSHOT/
>>> > since Jun 2020.
>>> >
>>> > I guess we would need to add a "deploy" step to the Jenkins file (see
>>> > https://github.com/apache/gora/pull/229 ,
>>> > https://www.jenkins.io/doc/book/pipeline/jenkinsfile/) but does anyone
>>> > exactly what command is it? Or how to configure it? Maybe I have to ask
>>> > INFRA?
>>> >
>>> > Let me know :)
>>> >
>>> > Thank you!
>>> >
>>> > Regards,
>>> > Alfonso Nishikawa
>>> >
>>> >
>>> >
>>> >
>>> > El sáb, 31 oct 2020 a las 17:28, Alfonso Nishikawa (<
>>> > alfonso.nishik...@gmail.com>) escribió:
>>> >
>>> > > All merits go for Damien :D Thanks too!
>>> > >
>>> > > Best regards,
>>> > >
>>> > > Alfonso Nishikawa
>>> > >
>>> > > El sáb., 31 oct. 2020 a las 16:59, Kevin Ratnasekera (<
>>> > > djkevincr1...@gmail.com>) escribió:
>>> > >
>>> > >> Hi Damien/Alfonso,
>>> > >>
>>> > >> I just noticed the jenkins build system works just fine. Thank you
>>> for
>>> > >> setting up builds again. :)
>>> > >>
>>> > >> Regards
>>> > >> Kevin
>>> > >>
>>> > >> On Tue, Oct 27, 2020 at 5:27 AM Alfonso Nishikawa <
>>> > >> alfonso.nishik...@gmail.com> wrote:
>>> > >>
>>> > >>> Hi, Damien.
>>> > >>>
>>> > >>> I really don't know anything about how to configure Jenkins, so
>>> > >>> everything
>>> > >>> seems ok to me n_nU
>>> > >>>
>>> > >>> Thank you!
>>> > >>>
>>> > >>> Best regards,
>>> > >>>
>>> > >>> Alfonso Nishikawa
>>> > >>>
>>> > >>> El sáb., 24 oct. 2020 a las 21:15, Damien Raude-Morvan (<
>>> > >>> draz...@drazzib.com>)
>>> > >>> escribió:
>>> > >>>
>>> > >>> > Hi Kevin & Alfonso !
>>> > >>> >
>>> > >>> > I've pretty good experience regarding creating Jenkinsfile for
>>> Java
>>> > >>> > projects. I think this is the way to go for Gora.
>>> > >>> >
>>> > >>> > This approach is described on ASF wiki : Multibranch Pipeline
>>> recipes
>>> > >>> > <
>>> > >>> >
>>> > >>>
>>> https://cwiki.apache.org/confluence/display/INFRA/Multibranch+Pipeline+recipes
>>> > >>> > >
>>> > >>> >
>>> > >>> > I've created a new issue (GORA-668
>>> > >>> > ) on this
>>> subject
>>> > >>> >
>>> > >>> > Regards,
>>> > >>> >
>>> > >>> > Le sam. 24 oct. 2020 à 14:46, Kevin Ratnasekera <
>>> > >>> djkevincr1...@gmail.com>
>>> > >>> > a
>>> > >>> > écrit :
>>> > >>> >
>>> > >>> > > Hi Alfonso,
>>> > >>> > >
>>> > >>> > > Apologize for taking time to respond to your email. Thank you
>>> for
>>> > >>> taking
>>> > >>> > > over this and creating the ticket. Let's see what we can do,
>>> once
>>> > >>> INFRA
>>> > >>> > > responds back to the ticket.
>>> > >>> > >
>>> > >>> > > Regards
>>> > >>> > > Kevin
>>> > >>> > >
>>> > >>> > > On Sat, Oct 24, 2020 at 5:45 PM Alfonso Nishikawa <
>>> > >>> > > alfonso.nishik...@gmail.com> wrote:
>>> > >>> > >
>>> > >>> > > > Created: https://issues.apache.org/jira/browse/INFRA-21024
>>> > >>> > > >
>>> > >>> > > > Now we just have to wait, and I believe we would have to
>>> create
>>> > >>> some
>>> > >>> > jobs
>>> > >>> > > > after? If I am not wrong, Infra does not create the jobs,
>>> but I
>>> > >>> hope I
>>> > >>> > am
>>> > >>> > > > mistaken :)
>>> > >>> > > >
>>> > >>> > > > Best regards,
>>> > >>> > > >
>>> > >>> > > > Alfonso 

Re: [Gora] builds.apache.org

2021-03-27 Thread Alfonso Nishikawa
Hi!

It seems I dont have the permission task/configure to access
https://ci-builds.apache.org/job/Any23/job/any23-master-jdk8/configure :(
May I get the permissions? :)

Thank you!

Regards,
Alfonso


El mar, 23 mar 2021 a las 7:54, Alfonso Nishikawa (<
alfonso.nishik...@gmail.com>) escribió:

> Hi, Lewis!
>
> I will take a look and comment if I have any issue.
>
> Thank you!! :)
>
> Regards,
> Alfonso
>
> El mar., 23 mar. 2021 1:12, Lewis John McGibbney 
> escribió:
>
>> Hi Alfonso,
>> The Gora builds now reside on the Cloudbees Jenkins server (which I think
>> you already figured out)
>> https://ci-builds.apache.org/job/Gora/job/gora-pipeline/job/master/
>> I don't have time to look into configuring the job right now but if you
>> look at the Any23 build we did a while back, then you can basically copy it
>> for the Gora master build
>> https://ci-builds.apache.org/job/Any23/job/any23-master-jdk8/configure
>> I hope this makes sense.
>> lewismc
>>
>> On 2021/03/13 16:48:49, Alfonso Nishikawa 
>> wrote:
>> > Hi!
>> >
>> > I am reopening this topic because I found that the jars master
>> x.x-SNAPSHOT
>> > are not being published to the repository of snapshots at the apache
>> > repository
>> >
>> https://repository.apache.org/#view-repositories;snapshots-group~browsestorage~org/apache/gora/gora-hbase/1.0-SNAPSHOT/
>> > since Jun 2020.
>> >
>> > I guess we would need to add a "deploy" step to the Jenkins file (see
>> > https://github.com/apache/gora/pull/229 ,
>> > https://www.jenkins.io/doc/book/pipeline/jenkinsfile/) but does anyone
>> > exactly what command is it? Or how to configure it? Maybe I have to ask
>> > INFRA?
>> >
>> > Let me know :)
>> >
>> > Thank you!
>> >
>> > Regards,
>> > Alfonso Nishikawa
>> >
>> >
>> >
>> >
>> > El sáb, 31 oct 2020 a las 17:28, Alfonso Nishikawa (<
>> > alfonso.nishik...@gmail.com>) escribió:
>> >
>> > > All merits go for Damien :D Thanks too!
>> > >
>> > > Best regards,
>> > >
>> > > Alfonso Nishikawa
>> > >
>> > > El sáb., 31 oct. 2020 a las 16:59, Kevin Ratnasekera (<
>> > > djkevincr1...@gmail.com>) escribió:
>> > >
>> > >> Hi Damien/Alfonso,
>> > >>
>> > >> I just noticed the jenkins build system works just fine. Thank you
>> for
>> > >> setting up builds again. :)
>> > >>
>> > >> Regards
>> > >> Kevin
>> > >>
>> > >> On Tue, Oct 27, 2020 at 5:27 AM Alfonso Nishikawa <
>> > >> alfonso.nishik...@gmail.com> wrote:
>> > >>
>> > >>> Hi, Damien.
>> > >>>
>> > >>> I really don't know anything about how to configure Jenkins, so
>> > >>> everything
>> > >>> seems ok to me n_nU
>> > >>>
>> > >>> Thank you!
>> > >>>
>> > >>> Best regards,
>> > >>>
>> > >>> Alfonso Nishikawa
>> > >>>
>> > >>> El sáb., 24 oct. 2020 a las 21:15, Damien Raude-Morvan (<
>> > >>> draz...@drazzib.com>)
>> > >>> escribió:
>> > >>>
>> > >>> > Hi Kevin & Alfonso !
>> > >>> >
>> > >>> > I've pretty good experience regarding creating Jenkinsfile for
>> Java
>> > >>> > projects. I think this is the way to go for Gora.
>> > >>> >
>> > >>> > This approach is described on ASF wiki : Multibranch Pipeline
>> recipes
>> > >>> > <
>> > >>> >
>> > >>>
>> https://cwiki.apache.org/confluence/display/INFRA/Multibranch+Pipeline+recipes
>> > >>> > >
>> > >>> >
>> > >>> > I've created a new issue (GORA-668
>> > >>> > ) on this subject
>> > >>> >
>> > >>> > Regards,
>> > >>> >
>> > >>> > Le sam. 24 oct. 2020 à 14:46, Kevin Ratnasekera <
>> > >>> djkevincr1...@gmail.com>
>> > >>> > a
>> > >>> > écrit :
>> > >>> >
>> > >>> > > Hi Alfonso,
>> > >>> > >
>> > >>> > > Apologize for taking time to respond to your email. Thank you
>> for
>> > >>> taking
>> > >>> > > over this and creating the ticket. Let's see what we can do,
>> once
>> > >>> INFRA
>> > >>> > > responds back to the ticket.
>> > >>> > >
>> > >>> > > Regards
>> > >>> > > Kevin
>> > >>> > >
>> > >>> > > On Sat, Oct 24, 2020 at 5:45 PM Alfonso Nishikawa <
>> > >>> > > alfonso.nishik...@gmail.com> wrote:
>> > >>> > >
>> > >>> > > > Created: https://issues.apache.org/jira/browse/INFRA-21024
>> > >>> > > >
>> > >>> > > > Now we just have to wait, and I believe we would have to
>> create
>> > >>> some
>> > >>> > jobs
>> > >>> > > > after? If I am not wrong, Infra does not create the jobs, but
>> I
>> > >>> hope I
>> > >>> > am
>> > >>> > > > mistaken :)
>> > >>> > > >
>> > >>> > > > Best regards,
>> > >>> > > >
>> > >>> > > > Alfonso Nishikawa
>> > >>> > > >
>> > >>> > > > El sáb., 24 oct. 2020 a las 12:06, Alfonso Nishikawa (<
>> > >>> > > > alfonso.nishik...@gmail.com>) escribió:
>> > >>> > > >
>> > >>> > > > > Hi, Damien.
>> > >>> > > > >
>> > >>> > > > > Yes, I will create the ticket :) Let's see if I manage to
>> get it
>> > >>> > done,
>> > >>> > > > > since I never wrote to Infra :)
>> > >>> > > > >
>> > >>> > > > > Thank you!
>> > >>> > > > >
>> > >>> > > > > Best regards,
>> > >>> > > > >
>> > >>> > > > > Alfonso Nishikawa
>> > >>> > > > >
>> > >>> > > > > El vie., 23 oct. 2020 a las 19:38, Damien Raude-Morvan