Skip to content
Snippets Groups Projects

Add script to check package installability

Merged Luis Araujo requested to merge wip/araujo/obs-installability into apertis/v2020pre
All threads resolved!
3 files
+ 185
0
Compare changes
  • Side-by-side
  • Inline
Files
3
  • 02ffc789
    The obs-installability script uses the dose-distcheck tool to check
    for package installability across the different images types.
    
    It checks for the following group of packages lists:
    ```
    target: for packages to be installed on minimal images
    hmi + target: for HMI packages to be installed on target images
    development + target: for tools used by OBS and developers
    sdk + development + target: for packages to be installed on basesdk images
    sdk + development + hmi + target: for packages to be installed on sdk images
    ```
    And it translates the dose-distcheck YAML output to the JUnit format so
    that Jenkins can understand it.
    
    This commit also includes the Dockerfile and Jenkisfile for integration.
    
    Signed-off-by: default avatarLuis Araujo <luis.araujo@collabora.co.uk>
+ 9
0
FROM debian:buster-slim
RUN apt-get update && apt-get install -y \
ca-certificates \
dose-distcheck \
python-jinja2 \
python3-yaml \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
Loading