You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@camel.apache.org by Claus Ibsen <cl...@gmail.com> on 2022/07/30 06:03:48 UTC

CI jobs for publishing SNAPSHOTs

Hi

It seems that the CI jobs for 3.18.x and 3.14.x does not publish SNAPSHOTs
to Apache snapshot repo.

eg 3.18.x branch is set as 3.18.1-SNAPSHOT as the version number but we
only have the older 3.18.0-SNAPSHOT versions before the 3.18.0 LTS was
released (july 9th)
https://repository.apache.org/content/groups/snapshots/org/apache/camel/camel-bom/

The Jenkinsfile.deploy is identical in main vs 3.18.x so I am puzzled why
the CI job does not work
The job only runs for 1 minute vs manin runs for 4 hours.


-- 
Claus Ibsen
-----------------
http://davsclaus.com @davsclaus
Camel in Action 2: https://www.manning.com/ibsen2

Re: CI jobs for publishing SNAPSHOTs

Posted by Otavio Rodolfo Piske <an...@gmail.com>.
Hello,

Thanks guys. The 3.14 looks broken, but it looks like a problem in the
agent.



On Mon, Aug 1, 2022 at 4:13 PM Zheng Feng <zf...@redhat.com> wrote:

> It looks like camel-3.18.x is working
>
> https://ci-builds.apache.org/job/Camel/job/Camel%20Daily%20Snapshot%20Deploy/job/camel-3.18.x/8/
>
>
> On Mon, Aug 1, 2022 at 1:20 PM Claus Ibsen <cl...@gmail.com> wrote:
>
> > Hi
> >
> > Yeah that seems correct. I am trying this now.
> >
> > On Mon, Aug 1, 2022 at 4:31 AM Zheng Feng <zf...@redhat.com> wrote:
> >
> > > So it could be change to use
> > >
> > > when {
> > >     anyOf {
> > >         branch 'main';
> > >         branch 'camel-3.18.x';
> > >         branch 'camel-3.14.x'
> > >     }
> > > }
> > >
> > > On Mon, Aug 1, 2022 at 4:20 AM Jeremy Ross <je...@gmail.com>
> > > wrote:
> > >
> > > > I don't know anything about Jenkins, but I suspect it's getting
> skipped
> > > > because of this:
> > > >
> > > > when {
> > > >     branch 'main'
> > > > }
> > > >
> > > >
> > >
> >
> https://github.com/apache/camel/blob/b254e0e8269980b05e340d685d4704369b01ed1e/Jenkinsfile.deploy#L62-L64
> > > >
> > > > The branch wouldn't be 'main', it'd be '3.18.x', therefore the step
> is
> > > > skipped. Same issue with 3.14.x
> > > >
> > > > Looks like the last time we were getting 3.x.[1+] builds was 3.7.x. I
> > > > noticed that branch has a modified Jenkinsfile:
> > > >
> > > > when {
> > > >     branch 'camel-3.7.x'
> > > > }
> > > >
> > > >
> > >
> >
> https://github.com/apache/camel/blob/364372f1a79875224c5d842bd001827e5d25f44e/Jenkinsfile.deploy#L62-L64
> > > >
> > > >
> > > >
> > > > On Sat, Jul 30, 2022 at 5:43 AM Claus Ibsen <cl...@gmail.com>
> > > wrote:
> > > >
> > > > > Hi
> > > > >
> > > > > All I can see from builds logs for 3.18.x is
> > > > >
> > > > >
> > > >
> > >
> >
> https://ci-builds.apache.org/job/Camel/job/Camel%20Daily%20Snapshot%20Deploy/job/camel-3.18.x/5/console
> > > > >
> > > > > Stage "Build & Deploy" skipped due to when conditional
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > On Sat, Jul 30, 2022 at 8:03 AM Claus Ibsen <claus.ibsen@gmail.com
> >
> > > > wrote:
> > > > >
> > > > > > Hi
> > > > > >
> > > > > > It seems that the CI jobs for 3.18.x and 3.14.x does not publish
> > > > > SNAPSHOTs
> > > > > > to Apache snapshot repo.
> > > > > >
> > > > > > eg 3.18.x branch is set as 3.18.1-SNAPSHOT as the version number
> > but
> > > we
> > > > > > only have the older 3.18.0-SNAPSHOT versions before the 3.18.0
> LTS
> > > was
> > > > > > released (july 9th)
> > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
> https://repository.apache.org/content/groups/snapshots/org/apache/camel/camel-bom/
> > > > > >
> > > > > > The Jenkinsfile.deploy is identical in main vs 3.18.x so I am
> > puzzled
> > > > why
> > > > > > the CI job does not work
> > > > > > The job only runs for 1 minute vs manin runs for 4 hours.
> > > > > >
> > > > > >
> > > > > > --
> > > > > > Claus Ibsen
> > > > > > -----------------
> > > > > > http://davsclaus.com @davsclaus
> > > > > > Camel in Action 2: https://www.manning.com/ibsen2
> > > > > >
> > > > >
> > > > >
> > > > > --
> > > > > Claus Ibsen
> > > > > -----------------
> > > > > http://davsclaus.com @davsclaus
> > > > > Camel in Action 2: https://www.manning.com/ibsen2
> > > > >
> > > >
> > >
> >
> >
> > --
> > Claus Ibsen
> > -----------------
> > http://davsclaus.com @davsclaus
> > Camel in Action 2: https://www.manning.com/ibsen2
> >
>


-- 
Otavio R. Piske
http://orpiske.net

Re: CI jobs for publishing SNAPSHOTs

Posted by Zheng Feng <zf...@redhat.com>.
It looks like camel-3.18.x is working
https://ci-builds.apache.org/job/Camel/job/Camel%20Daily%20Snapshot%20Deploy/job/camel-3.18.x/8/


On Mon, Aug 1, 2022 at 1:20 PM Claus Ibsen <cl...@gmail.com> wrote:

> Hi
>
> Yeah that seems correct. I am trying this now.
>
> On Mon, Aug 1, 2022 at 4:31 AM Zheng Feng <zf...@redhat.com> wrote:
>
> > So it could be change to use
> >
> > when {
> >     anyOf {
> >         branch 'main';
> >         branch 'camel-3.18.x';
> >         branch 'camel-3.14.x'
> >     }
> > }
> >
> > On Mon, Aug 1, 2022 at 4:20 AM Jeremy Ross <je...@gmail.com>
> > wrote:
> >
> > > I don't know anything about Jenkins, but I suspect it's getting skipped
> > > because of this:
> > >
> > > when {
> > >     branch 'main'
> > > }
> > >
> > >
> >
> https://github.com/apache/camel/blob/b254e0e8269980b05e340d685d4704369b01ed1e/Jenkinsfile.deploy#L62-L64
> > >
> > > The branch wouldn't be 'main', it'd be '3.18.x', therefore the step is
> > > skipped. Same issue with 3.14.x
> > >
> > > Looks like the last time we were getting 3.x.[1+] builds was 3.7.x. I
> > > noticed that branch has a modified Jenkinsfile:
> > >
> > > when {
> > >     branch 'camel-3.7.x'
> > > }
> > >
> > >
> >
> https://github.com/apache/camel/blob/364372f1a79875224c5d842bd001827e5d25f44e/Jenkinsfile.deploy#L62-L64
> > >
> > >
> > >
> > > On Sat, Jul 30, 2022 at 5:43 AM Claus Ibsen <cl...@gmail.com>
> > wrote:
> > >
> > > > Hi
> > > >
> > > > All I can see from builds logs for 3.18.x is
> > > >
> > > >
> > >
> >
> https://ci-builds.apache.org/job/Camel/job/Camel%20Daily%20Snapshot%20Deploy/job/camel-3.18.x/5/console
> > > >
> > > > Stage "Build & Deploy" skipped due to when conditional
> > > >
> > > >
> > > >
> > > >
> > > > On Sat, Jul 30, 2022 at 8:03 AM Claus Ibsen <cl...@gmail.com>
> > > wrote:
> > > >
> > > > > Hi
> > > > >
> > > > > It seems that the CI jobs for 3.18.x and 3.14.x does not publish
> > > > SNAPSHOTs
> > > > > to Apache snapshot repo.
> > > > >
> > > > > eg 3.18.x branch is set as 3.18.1-SNAPSHOT as the version number
> but
> > we
> > > > > only have the older 3.18.0-SNAPSHOT versions before the 3.18.0 LTS
> > was
> > > > > released (july 9th)
> > > > >
> > > > >
> > > >
> > >
> >
> https://repository.apache.org/content/groups/snapshots/org/apache/camel/camel-bom/
> > > > >
> > > > > The Jenkinsfile.deploy is identical in main vs 3.18.x so I am
> puzzled
> > > why
> > > > > the CI job does not work
> > > > > The job only runs for 1 minute vs manin runs for 4 hours.
> > > > >
> > > > >
> > > > > --
> > > > > Claus Ibsen
> > > > > -----------------
> > > > > http://davsclaus.com @davsclaus
> > > > > Camel in Action 2: https://www.manning.com/ibsen2
> > > > >
> > > >
> > > >
> > > > --
> > > > Claus Ibsen
> > > > -----------------
> > > > http://davsclaus.com @davsclaus
> > > > Camel in Action 2: https://www.manning.com/ibsen2
> > > >
> > >
> >
>
>
> --
> Claus Ibsen
> -----------------
> http://davsclaus.com @davsclaus
> Camel in Action 2: https://www.manning.com/ibsen2
>

Re: CI jobs for publishing SNAPSHOTs

Posted by Claus Ibsen <cl...@gmail.com>.
Hi

Yeah that seems correct. I am trying this now.

On Mon, Aug 1, 2022 at 4:31 AM Zheng Feng <zf...@redhat.com> wrote:

> So it could be change to use
>
> when {
>     anyOf {
>         branch 'main';
>         branch 'camel-3.18.x';
>         branch 'camel-3.14.x'
>     }
> }
>
> On Mon, Aug 1, 2022 at 4:20 AM Jeremy Ross <je...@gmail.com>
> wrote:
>
> > I don't know anything about Jenkins, but I suspect it's getting skipped
> > because of this:
> >
> > when {
> >     branch 'main'
> > }
> >
> >
> https://github.com/apache/camel/blob/b254e0e8269980b05e340d685d4704369b01ed1e/Jenkinsfile.deploy#L62-L64
> >
> > The branch wouldn't be 'main', it'd be '3.18.x', therefore the step is
> > skipped. Same issue with 3.14.x
> >
> > Looks like the last time we were getting 3.x.[1+] builds was 3.7.x. I
> > noticed that branch has a modified Jenkinsfile:
> >
> > when {
> >     branch 'camel-3.7.x'
> > }
> >
> >
> https://github.com/apache/camel/blob/364372f1a79875224c5d842bd001827e5d25f44e/Jenkinsfile.deploy#L62-L64
> >
> >
> >
> > On Sat, Jul 30, 2022 at 5:43 AM Claus Ibsen <cl...@gmail.com>
> wrote:
> >
> > > Hi
> > >
> > > All I can see from builds logs for 3.18.x is
> > >
> > >
> >
> https://ci-builds.apache.org/job/Camel/job/Camel%20Daily%20Snapshot%20Deploy/job/camel-3.18.x/5/console
> > >
> > > Stage "Build & Deploy" skipped due to when conditional
> > >
> > >
> > >
> > >
> > > On Sat, Jul 30, 2022 at 8:03 AM Claus Ibsen <cl...@gmail.com>
> > wrote:
> > >
> > > > Hi
> > > >
> > > > It seems that the CI jobs for 3.18.x and 3.14.x does not publish
> > > SNAPSHOTs
> > > > to Apache snapshot repo.
> > > >
> > > > eg 3.18.x branch is set as 3.18.1-SNAPSHOT as the version number but
> we
> > > > only have the older 3.18.0-SNAPSHOT versions before the 3.18.0 LTS
> was
> > > > released (july 9th)
> > > >
> > > >
> > >
> >
> https://repository.apache.org/content/groups/snapshots/org/apache/camel/camel-bom/
> > > >
> > > > The Jenkinsfile.deploy is identical in main vs 3.18.x so I am puzzled
> > why
> > > > the CI job does not work
> > > > The job only runs for 1 minute vs manin runs for 4 hours.
> > > >
> > > >
> > > > --
> > > > Claus Ibsen
> > > > -----------------
> > > > http://davsclaus.com @davsclaus
> > > > Camel in Action 2: https://www.manning.com/ibsen2
> > > >
> > >
> > >
> > > --
> > > Claus Ibsen
> > > -----------------
> > > http://davsclaus.com @davsclaus
> > > Camel in Action 2: https://www.manning.com/ibsen2
> > >
> >
>


-- 
Claus Ibsen
-----------------
http://davsclaus.com @davsclaus
Camel in Action 2: https://www.manning.com/ibsen2

Re: CI jobs for publishing SNAPSHOTs

Posted by Zheng Feng <zf...@redhat.com>.
So it could be change to use

when {
    anyOf {
        branch 'main';
        branch 'camel-3.18.x';
        branch 'camel-3.14.x'
    }
}

On Mon, Aug 1, 2022 at 4:20 AM Jeremy Ross <je...@gmail.com> wrote:

> I don't know anything about Jenkins, but I suspect it's getting skipped
> because of this:
>
> when {
>     branch 'main'
> }
>
> https://github.com/apache/camel/blob/b254e0e8269980b05e340d685d4704369b01ed1e/Jenkinsfile.deploy#L62-L64
>
> The branch wouldn't be 'main', it'd be '3.18.x', therefore the step is
> skipped. Same issue with 3.14.x
>
> Looks like the last time we were getting 3.x.[1+] builds was 3.7.x. I
> noticed that branch has a modified Jenkinsfile:
>
> when {
>     branch 'camel-3.7.x'
> }
>
> https://github.com/apache/camel/blob/364372f1a79875224c5d842bd001827e5d25f44e/Jenkinsfile.deploy#L62-L64
>
>
>
> On Sat, Jul 30, 2022 at 5:43 AM Claus Ibsen <cl...@gmail.com> wrote:
>
> > Hi
> >
> > All I can see from builds logs for 3.18.x is
> >
> >
> https://ci-builds.apache.org/job/Camel/job/Camel%20Daily%20Snapshot%20Deploy/job/camel-3.18.x/5/console
> >
> > Stage "Build & Deploy" skipped due to when conditional
> >
> >
> >
> >
> > On Sat, Jul 30, 2022 at 8:03 AM Claus Ibsen <cl...@gmail.com>
> wrote:
> >
> > > Hi
> > >
> > > It seems that the CI jobs for 3.18.x and 3.14.x does not publish
> > SNAPSHOTs
> > > to Apache snapshot repo.
> > >
> > > eg 3.18.x branch is set as 3.18.1-SNAPSHOT as the version number but we
> > > only have the older 3.18.0-SNAPSHOT versions before the 3.18.0 LTS was
> > > released (july 9th)
> > >
> > >
> >
> https://repository.apache.org/content/groups/snapshots/org/apache/camel/camel-bom/
> > >
> > > The Jenkinsfile.deploy is identical in main vs 3.18.x so I am puzzled
> why
> > > the CI job does not work
> > > The job only runs for 1 minute vs manin runs for 4 hours.
> > >
> > >
> > > --
> > > Claus Ibsen
> > > -----------------
> > > http://davsclaus.com @davsclaus
> > > Camel in Action 2: https://www.manning.com/ibsen2
> > >
> >
> >
> > --
> > Claus Ibsen
> > -----------------
> > http://davsclaus.com @davsclaus
> > Camel in Action 2: https://www.manning.com/ibsen2
> >
>

Re: CI jobs for publishing SNAPSHOTs

Posted by Jeremy Ross <je...@gmail.com>.
I don't know anything about Jenkins, but I suspect it's getting skipped
because of this:

when {
    branch 'main'
}
https://github.com/apache/camel/blob/b254e0e8269980b05e340d685d4704369b01ed1e/Jenkinsfile.deploy#L62-L64

The branch wouldn't be 'main', it'd be '3.18.x', therefore the step is
skipped. Same issue with 3.14.x

Looks like the last time we were getting 3.x.[1+] builds was 3.7.x. I
noticed that branch has a modified Jenkinsfile:

when {
    branch 'camel-3.7.x'
}
https://github.com/apache/camel/blob/364372f1a79875224c5d842bd001827e5d25f44e/Jenkinsfile.deploy#L62-L64



On Sat, Jul 30, 2022 at 5:43 AM Claus Ibsen <cl...@gmail.com> wrote:

> Hi
>
> All I can see from builds logs for 3.18.x is
>
> https://ci-builds.apache.org/job/Camel/job/Camel%20Daily%20Snapshot%20Deploy/job/camel-3.18.x/5/console
>
> Stage "Build & Deploy" skipped due to when conditional
>
>
>
>
> On Sat, Jul 30, 2022 at 8:03 AM Claus Ibsen <cl...@gmail.com> wrote:
>
> > Hi
> >
> > It seems that the CI jobs for 3.18.x and 3.14.x does not publish
> SNAPSHOTs
> > to Apache snapshot repo.
> >
> > eg 3.18.x branch is set as 3.18.1-SNAPSHOT as the version number but we
> > only have the older 3.18.0-SNAPSHOT versions before the 3.18.0 LTS was
> > released (july 9th)
> >
> >
> https://repository.apache.org/content/groups/snapshots/org/apache/camel/camel-bom/
> >
> > The Jenkinsfile.deploy is identical in main vs 3.18.x so I am puzzled why
> > the CI job does not work
> > The job only runs for 1 minute vs manin runs for 4 hours.
> >
> >
> > --
> > Claus Ibsen
> > -----------------
> > http://davsclaus.com @davsclaus
> > Camel in Action 2: https://www.manning.com/ibsen2
> >
>
>
> --
> Claus Ibsen
> -----------------
> http://davsclaus.com @davsclaus
> Camel in Action 2: https://www.manning.com/ibsen2
>

Re: CI jobs for publishing SNAPSHOTs

Posted by Claus Ibsen <cl...@gmail.com>.
Hi

All I can see from builds logs for 3.18.x is
https://ci-builds.apache.org/job/Camel/job/Camel%20Daily%20Snapshot%20Deploy/job/camel-3.18.x/5/console

Stage "Build & Deploy" skipped due to when conditional




On Sat, Jul 30, 2022 at 8:03 AM Claus Ibsen <cl...@gmail.com> wrote:

> Hi
>
> It seems that the CI jobs for 3.18.x and 3.14.x does not publish SNAPSHOTs
> to Apache snapshot repo.
>
> eg 3.18.x branch is set as 3.18.1-SNAPSHOT as the version number but we
> only have the older 3.18.0-SNAPSHOT versions before the 3.18.0 LTS was
> released (july 9th)
>
> https://repository.apache.org/content/groups/snapshots/org/apache/camel/camel-bom/
>
> The Jenkinsfile.deploy is identical in main vs 3.18.x so I am puzzled why
> the CI job does not work
> The job only runs for 1 minute vs manin runs for 4 hours.
>
>
> --
> Claus Ibsen
> -----------------
> http://davsclaus.com @davsclaus
> Camel in Action 2: https://www.manning.com/ibsen2
>


-- 
Claus Ibsen
-----------------
http://davsclaus.com @davsclaus
Camel in Action 2: https://www.manning.com/ibsen2