diff mbox series

ci: added Ubuntu Jammy

Message ID 20220517095404.194110-1-michael.adler@siemens.com
State Accepted
Headers show
Series ci: added Ubuntu Jammy | expand

Commit Message

Michael Adler May 17, 2022, 9:54 a.m. UTC
Ubuntu Jammy is the latest LTS release (supported until 2027),
which contains more recent packages. Testing against more recent libs
ensures we do not rely on any deprecated APIs.

Signed-off-by: Michael Adler <michael.adler@siemens.com>
Signed-off-by: Christian Storm <christian.storm@siemens.com>
---
 .gitlab-ci.yml | 10 ++++++++++
 1 file changed, 10 insertions(+)

Comments

Stefano Babic May 17, 2022, 1:54 p.m. UTC | #1
On 17.05.22 11:54, Michael Adler wrote:
> Ubuntu Jammy is the latest LTS release (supported until 2027),
> which contains more recent packages. Testing against more recent libs
> ensures we do not rely on any deprecated APIs.
> 
> Signed-off-by: Michael Adler <michael.adler@siemens.com>
> Signed-off-by: Christian Storm <christian.storm@siemens.com>
> ---
>   .gitlab-ci.yml | 10 ++++++++++
>   1 file changed, 10 insertions(+)
> 
> diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
> index 6f9ff95..c591f52 100644
> --- a/.gitlab-ci.yml
> +++ b/.gitlab-ci.yml
> @@ -11,6 +11,16 @@ ubuntu-focal:
>     script:
>       - if [ $CI_COMMIT_BRANCH == "coverity_scan" ]; then ./ci/coverity.sh;fi
>       - ./ci/test-configs.sh
> +
> +ubuntu-jammy:
> +  image: ubuntu:jammy
> +  stage: build
> +  before_script:
> +    - ./ci/setup.sh
> +    - ./ci/install-src-deps.sh
> +  script:
> +    - ./ci/test-configs.sh
> +
>   reuse:
>     needs: []
>     stage: test

Reviewed-by: Stefano Babic <sbabic@denx.de>

Best regards,
Stefano Babic
diff mbox series

Patch

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6f9ff95..c591f52 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -11,6 +11,16 @@  ubuntu-focal:
   script:
     - if [ $CI_COMMIT_BRANCH == "coverity_scan" ]; then ./ci/coverity.sh;fi
     - ./ci/test-configs.sh
+
+ubuntu-jammy:
+  image: ubuntu:jammy
+  stage: build
+  before_script:
+    - ./ci/setup.sh
+    - ./ci/install-src-deps.sh
+  script:
+    - ./ci/test-configs.sh
+
 reuse:
   needs: []
   stage: test