Skip to content

Commit

Permalink
Update Hono Builder Docker image to latest Mandrel version
Browse files Browse the repository at this point in the history
  • Loading branch information
sophokles73 committed Jan 17, 2024
1 parent 8750729 commit c5425f1
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions jenkins/Hono-Deploy-Eclipse-Pipeline-Declarative.groovy
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2016, 2022 Contributors to the Eclipse Foundation
* Copyright (c) 2016 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
Expand Down Expand Up @@ -33,7 +33,7 @@ pipeline {
- name: "HOME"
value: "/home/jenkins"
- name: "hono-builder"
image: "eclipse/hono-builder:2.2.0"
image: "eclipse/hono-builder:2.5.0"
imagePullPolicy: "Always"
tty: true
command:
Expand Down
4 changes: 2 additions & 2 deletions jenkins/Hono-Deploy-Maven-Central-Pipeline-Declarative.groovy
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2016, 2022 Contributors to the Eclipse Foundation
* Copyright (c) 2016 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
Expand Down Expand Up @@ -33,7 +33,7 @@ pipeline {
- name: "HOME"
value: "/home/jenkins"
- name: "hono-builder"
image: "eclipse/hono-builder:2.2.0"
image: "eclipse/hono-builder:2.5.0"
imagePullPolicy: "Always"
tty: true
command:
Expand Down
4 changes: 2 additions & 2 deletions jenkins/Hono-Nightly-Pipeline-Declarative.groovy
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2016, 2022 Contributors to the Eclipse Foundation
* Copyright (c) 2016 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
Expand Down Expand Up @@ -32,7 +32,7 @@ pipeline {
- name: "HOME"
value: "/home/jenkins"
- name: "hono-builder"
image: "eclipse/hono-builder:2.2.0"
image: "eclipse/hono-builder:2.5.0"
imagePullPolicy: "Always"
tty: true
command:
Expand Down
4 changes: 2 additions & 2 deletions jenkins/Hono-Release-Pipeline.groovy
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2016, 2022 Contributors to the Eclipse Foundation
* Copyright (c) 2016 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
Expand Down Expand Up @@ -31,7 +31,7 @@ pipeline {
- name: "HOME"
value: "/home/jenkins"
- name: "hono-builder"
image: "eclipse/hono-builder:2.2.0"
image: "eclipse/hono-builder:2.5.0"
imagePullPolicy: "Always"
tty: true
command:
Expand Down
4 changes: 2 additions & 2 deletions jenkins/Hono-Sonar-Pipeline.groovy
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2021, 2022 Contributors to the Eclipse Foundation
* Copyright (c) 2021 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
Expand Down Expand Up @@ -32,7 +32,7 @@ pipeline {
- name: "HOME"
value: "/home/jenkins"
- name: "hono-builder"
image: "eclipse/hono-builder:2.2.0"
image: "eclipse/hono-builder:2.5.0"
imagePullPolicy: "Always"
tty: true
command:
Expand Down
2 changes: 1 addition & 1 deletion jenkins/Hono-Website-Pipeline-Declarative.groovy
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2020, 2022 Contributors to the Eclipse Foundation
* Copyright (c) 2020 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
Expand Down
6 changes: 3 additions & 3 deletions jenkins/builder/HonoBuilder.dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Copyright (c) 2022, 2023 Contributors to the Eclipse Foundation
# Copyright (c) 2022 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public Li2cense 2.0 which is available at
# terms of the Eclipse Public License 2.0 which is available at
# http://www.eclipse.org/legal/epl-2.0
#
# SPDX-License-Identifier: EPL-2.0
Expand All @@ -18,7 +18,7 @@

FROM debian:bullseye-slim

ARG MANDREL_VERSION=22.3.3.1-Final
ARG MANDREL_VERSION=23.0.2.1-Final
# either java11 or java17
ARG JDK_VERSION=java17
ARG MVN_VERSION=3.8.8
Expand Down
4 changes: 2 additions & 2 deletions jenkins/builder/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ The image can be built using

```sh
# in folder $HONO_HOME/jenkins/builder
docker build -t eclipse/hono-builder:2.2.0 -f HonoBuilder.dockerfile .
docker build -t eclipse/hono-builder:2.5.0 -f HonoBuilder.dockerfile .
```

The resulting image needs to be pushed (manually) to Docker Hub before running any of the build pipelines
on the Eclipse Jenkins build infrastructure:

```sh
docker push eclipse/hono-builder:2.2.0
docker push eclipse/hono-builder:2.5.0
```

0 comments on commit c5425f1

Please sign in to comment.