From 2c1f82ad826045b96a3a6090022fa4cd86d80d05 Mon Sep 17 00:00:00 2001 From: Zygmunt Krynicki <zygmunt.krynicki@huawei.com> Date: Fri, 22 Oct 2021 17:34:41 +0000 Subject: [PATCH] .oniro-ci: add all build containers The CI system depends on a number of containers. Those used to be defined in another repository but with this migration we can now simplify and aggregate everything into one repository. Signed-off-by: Zygmunt Krynicki <zygmunt.krynicki@huawei.com> --- .gitlab-ci.yml | 25 +++++++++++ .oniro-ci/containers/README.md | 9 ++++ .../containers/bitbake-builder/.gitconfig | 6 +++ .../containers/bitbake-builder/Dockerfile | 40 ++++++++++++++++++ .../containers/bitbake-builder/README.md | 8 ++++ .../ppa/zyga-ubuntu-oh-tools-focal.list | 4 ++ .../ppa/zyga-ubuntu-oh-tools.gpg | Bin 0 -> 402 bytes .../ppa/zyga-ubuntu-oh-tools.gpg.license | 2 + .oniro-ci/containers/dco-check/Dockerfile | 27 ++++++++++++ .oniro-ci/containers/dco-check/README.md | 8 ++++ .../ppa/zyga-ubuntu-oh-tools-focal.list | 4 ++ .../dco-check/ppa/zyga-ubuntu-oh-tools.gpg | Bin 0 -> 402 bytes .../ppa/zyga-ubuntu-oh-tools.gpg.license | 2 + .oniro-ci/containers/docs-builder/.gitconfig | 6 +++ .oniro-ci/containers/docs-builder/Dockerfile | 17 ++++++++ .oniro-ci/containers/docs-builder/README.md | 8 ++++ .../ppa/zyga-ubuntu-oh-tools-groovy.list | 4 ++ .../docs-builder/ppa/zyga-ubuntu-oh-tools.gpg | Bin 0 -> 402 bytes .../ppa/zyga-ubuntu-oh-tools.gpg.license | 2 + .oniro-ci/containers/npm-cspell/Dockerfile | 13 ++++++ .oniro-ci/containers/npm-cspell/README.md | 8 ++++ .oniro-ci/containers/reuse/Dockerfile | 27 ++++++++++++ .oniro-ci/containers/reuse/README.md | 8 ++++ .../reuse/ppa/zyga-ubuntu-oh-tools-focal.list | 4 ++ .../reuse/ppa/zyga-ubuntu-oh-tools.gpg | Bin 0 -> 402 bytes .../ppa/zyga-ubuntu-oh-tools.gpg.license | 2 + 26 files changed, 234 insertions(+) create mode 100644 .oniro-ci/containers/README.md create mode 100644 .oniro-ci/containers/bitbake-builder/.gitconfig create mode 100644 .oniro-ci/containers/bitbake-builder/Dockerfile create mode 100644 .oniro-ci/containers/bitbake-builder/README.md create mode 100644 .oniro-ci/containers/bitbake-builder/ppa/zyga-ubuntu-oh-tools-focal.list create mode 100644 .oniro-ci/containers/bitbake-builder/ppa/zyga-ubuntu-oh-tools.gpg create mode 100644 .oniro-ci/containers/bitbake-builder/ppa/zyga-ubuntu-oh-tools.gpg.license create mode 100644 .oniro-ci/containers/dco-check/Dockerfile create mode 100644 .oniro-ci/containers/dco-check/README.md create mode 100644 .oniro-ci/containers/dco-check/ppa/zyga-ubuntu-oh-tools-focal.list create mode 100644 .oniro-ci/containers/dco-check/ppa/zyga-ubuntu-oh-tools.gpg create mode 100644 .oniro-ci/containers/dco-check/ppa/zyga-ubuntu-oh-tools.gpg.license create mode 100644 .oniro-ci/containers/docs-builder/.gitconfig create mode 100644 .oniro-ci/containers/docs-builder/Dockerfile create mode 100644 .oniro-ci/containers/docs-builder/README.md create mode 100644 .oniro-ci/containers/docs-builder/ppa/zyga-ubuntu-oh-tools-groovy.list create mode 100644 .oniro-ci/containers/docs-builder/ppa/zyga-ubuntu-oh-tools.gpg create mode 100644 .oniro-ci/containers/docs-builder/ppa/zyga-ubuntu-oh-tools.gpg.license create mode 100644 .oniro-ci/containers/npm-cspell/Dockerfile create mode 100644 .oniro-ci/containers/npm-cspell/README.md create mode 100644 .oniro-ci/containers/reuse/Dockerfile create mode 100644 .oniro-ci/containers/reuse/README.md create mode 100644 .oniro-ci/containers/reuse/ppa/zyga-ubuntu-oh-tools-focal.list create mode 100644 .oniro-ci/containers/reuse/ppa/zyga-ubuntu-oh-tools.gpg create mode 100644 .oniro-ci/containers/reuse/ppa/zyga-ubuntu-oh-tools.gpg.license diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 02f32927..8bdd9287 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -187,3 +187,28 @@ lava-report: changes: - .oniro-ci/containers/$CONTAINER_PATH/* - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH' + +build-bitbake-builder: + extends: .build-with-kaniko + variables: + CONTAINER_PATH: bitbake-builder + +build-docs-builder: + extends: .build-with-kaniko + variables: + CONTAINER_PATH: docs-builder + +build-dco-check: + extends: .build-with-kaniko + variables: + CONTAINER_PATH: dco-check + +build-reuse: + extends: .build-with-kaniko + variables: + CONTAINER_PATH: reuse + +build-npm-cspell: + extends: .build-with-kaniko + variables: + CONTAINER_PATH: npm-cspell diff --git a/.oniro-ci/containers/README.md b/.oniro-ci/containers/README.md new file mode 100644 index 00000000..d254ca42 --- /dev/null +++ b/.oniro-ci/containers/README.md @@ -0,0 +1,9 @@ +<!-- +SPDX-FileCopyrightText: 2020 Huawei Inc. +SPDX-License-Identifier: Apache-2.0 +--> + +# Reference docker containers + +This repository contains definitions of reference docker containers +used for various build tasks. diff --git a/.oniro-ci/containers/bitbake-builder/.gitconfig b/.oniro-ci/containers/bitbake-builder/.gitconfig new file mode 100644 index 00000000..8b2e0662 --- /dev/null +++ b/.oniro-ci/containers/bitbake-builder/.gitconfig @@ -0,0 +1,6 @@ +# SPDX-FileCopyrightText: 2021 Huawei Inc. +# SPDX-License-Identifier: Apache-2.0 + +[user] + name = OSTC Builder + email = ostc-builder@example.org diff --git a/.oniro-ci/containers/bitbake-builder/Dockerfile b/.oniro-ci/containers/bitbake-builder/Dockerfile new file mode 100644 index 00000000..d7fe0eb1 --- /dev/null +++ b/.oniro-ci/containers/bitbake-builder/Dockerfile @@ -0,0 +1,40 @@ +# Copyright 2021 Huawei Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# SPDX-License-Identifier: Apache-2.0 + +FROM ubuntu:20.04 + +COPY --chown=root:root ppa/zyga-ubuntu-oh-tools-focal.list /etc/apt/sources.list.d/ +COPY --chown=root:root ppa/zyga-ubuntu-oh-tools.gpg /etc/apt/trusted.gpg.d/ + +ARG DEBIAN_FRONTEND="noninteractive" +RUN apt-get update -qq \ + && apt-get install -y eatmydata \ + && eatmydata apt-get install -qq -y \ + bash git-repo apt-utils build-essential chrpath cpio diffstat gawk git sudo wget \ + language-pack-en-base time locales python-is-python3 python3-distutils libssl-dev \ + iproute2 iputils-ping curl jq \ + && eatmydata apt-get install -qq -y 'ca-certificates=20210119~20.04.2' \ + && eatmydata apt-get clean && rm -rf /var/lib/apt/lists/* +RUN locale-gen + +# Let's just have /bin/sh as bash +RUN echo "dash dash/sh boolean false" | debconf-set-selections \ + && DEBIAN_FRONTEND=noninteractive dpkg-reconfigure dash + +RUN useradd --create-home --uid 1000 --shell /usr/bin/bash builder +COPY --chown=builder:builder .gitconfig /home/builder/.gitconfig +USER builder +WORKDIR /home/builder diff --git a/.oniro-ci/containers/bitbake-builder/README.md b/.oniro-ci/containers/bitbake-builder/README.md new file mode 100644 index 00000000..24ade74e --- /dev/null +++ b/.oniro-ci/containers/bitbake-builder/README.md @@ -0,0 +1,8 @@ +<!-- +SPDX-FileCopyrightText: 2021 Huawei Inc. +SPDX-License-Identifier: Apache-2.0 +--> + +# Bitbake builder for Oniro + +This container provides repo and dependencies for using bitbake. diff --git a/.oniro-ci/containers/bitbake-builder/ppa/zyga-ubuntu-oh-tools-focal.list b/.oniro-ci/containers/bitbake-builder/ppa/zyga-ubuntu-oh-tools-focal.list new file mode 100644 index 00000000..729b1c91 --- /dev/null +++ b/.oniro-ci/containers/bitbake-builder/ppa/zyga-ubuntu-oh-tools-focal.list @@ -0,0 +1,4 @@ +# SPDX-License-Identifier: Apache-2.0 +# SPDX-FileCopyrightText: 2020 Huawei Inc. +deb http://ppa.launchpad.net/zyga/oh-tools/ubuntu/ focal main +# deb-src http://ppa.launchpad.net/zyga/oh-tools/ubuntu/ focal main diff --git a/.oniro-ci/containers/bitbake-builder/ppa/zyga-ubuntu-oh-tools.gpg b/.oniro-ci/containers/bitbake-builder/ppa/zyga-ubuntu-oh-tools.gpg new file mode 100644 index 0000000000000000000000000000000000000000..b64a0ccb8bff314af290156d2c4c564edea3eca3 GIT binary patch literal 402 zcmbQy%i=xL<Q^jn!`3+uB4>ZtX>rd+bf<ok;CJO)4%?RQd#&H>_WEb>lYNcd^G#aQ z=Pdi&bj4dcuE8S2`dEM4Wq*OoG1Z@SrcM14{^w5qb#1*^SM9<IuDTc%g%>3@GkN~p zJ;!wO*A4Gv7ww1Laux>y4}_W*?&+M#?5kjUtb0@J%_*<)j&>+~cjPH&5M*Rv+`z-Y zkY13^$N&agRDBXl^O7?P5>phM^K)|(^HLQ2@=Fxl@=JlN;Jn0w;*9)~VyGr2h^CHh zEW(UT3<|7FAdfLgGqZ7Xa<DTqv4}EpFtdm;F*7pBF*1oaFmQ1S*nZP^_DnBpwf7e0 ze@0LK6|*1lug%RlyNYf7(|S)ENm1WZOjq8gXCB*^!W8$Yx`Hiw_kZ=YJzsyvCawN$ zQ6i$kv}&2BQB(U0|G6v~Y!e?^dQ3c$wb1hE{YM^uU3FfnU!E2CG4H0#Q{K#*kGZCp shD|wee9wBO2Q%CLe%&89<;isRH4+)_i#o1N{mC7?a|0U#Gtlb{0C5hbga7~l literal 0 HcmV?d00001 diff --git a/.oniro-ci/containers/bitbake-builder/ppa/zyga-ubuntu-oh-tools.gpg.license b/.oniro-ci/containers/bitbake-builder/ppa/zyga-ubuntu-oh-tools.gpg.license new file mode 100644 index 00000000..5f636925 --- /dev/null +++ b/.oniro-ci/containers/bitbake-builder/ppa/zyga-ubuntu-oh-tools.gpg.license @@ -0,0 +1,2 @@ +SPDX-License-Identifier: Apache-2.0 +SPDX-FileCopyrightText: 2020 Huawei Inc. diff --git a/.oniro-ci/containers/dco-check/Dockerfile b/.oniro-ci/containers/dco-check/Dockerfile new file mode 100644 index 00000000..449a167a --- /dev/null +++ b/.oniro-ci/containers/dco-check/Dockerfile @@ -0,0 +1,27 @@ +# Copyright 2021 Huawei Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# SPDX-License-Identifier: Apache-2.0 + +FROM ubuntu:20.04 + +COPY --chown=root:root ppa/zyga-ubuntu-oh-tools-focal.list /etc/apt/sources.list.d/ +COPY --chown=root:root ppa/zyga-ubuntu-oh-tools.gpg /etc/apt/trusted.gpg.d/ + +ARG DEBIAN_FRONTEND="noninteractive" +RUN apt-get update -qq \ + && apt-get install -y eatmydata \ + && eatmydata apt-get install -qq -y 'dco-check=0.1.1-1+ostc2' \ + && eatmydata apt-get install -qq -y 'ca-certificates=20210119~20.04.2' \ + && eatmydata apt-get clean && rm -rf /var/lib/apt/lists/* diff --git a/.oniro-ci/containers/dco-check/README.md b/.oniro-ci/containers/dco-check/README.md new file mode 100644 index 00000000..30486486 --- /dev/null +++ b/.oniro-ci/containers/dco-check/README.md @@ -0,0 +1,8 @@ +<!-- +SPDX-FileCopyrightText: 2021 Huawei Inc. +SPDX-License-Identifier: Apache-2.0 +--> + +# DCO check for Oniro + +This container provides the dco-check package. diff --git a/.oniro-ci/containers/dco-check/ppa/zyga-ubuntu-oh-tools-focal.list b/.oniro-ci/containers/dco-check/ppa/zyga-ubuntu-oh-tools-focal.list new file mode 100644 index 00000000..729b1c91 --- /dev/null +++ b/.oniro-ci/containers/dco-check/ppa/zyga-ubuntu-oh-tools-focal.list @@ -0,0 +1,4 @@ +# SPDX-License-Identifier: Apache-2.0 +# SPDX-FileCopyrightText: 2020 Huawei Inc. +deb http://ppa.launchpad.net/zyga/oh-tools/ubuntu/ focal main +# deb-src http://ppa.launchpad.net/zyga/oh-tools/ubuntu/ focal main diff --git a/.oniro-ci/containers/dco-check/ppa/zyga-ubuntu-oh-tools.gpg b/.oniro-ci/containers/dco-check/ppa/zyga-ubuntu-oh-tools.gpg new file mode 100644 index 0000000000000000000000000000000000000000..b64a0ccb8bff314af290156d2c4c564edea3eca3 GIT binary patch literal 402 zcmbQy%i=xL<Q^jn!`3+uB4>ZtX>rd+bf<ok;CJO)4%?RQd#&H>_WEb>lYNcd^G#aQ z=Pdi&bj4dcuE8S2`dEM4Wq*OoG1Z@SrcM14{^w5qb#1*^SM9<IuDTc%g%>3@GkN~p zJ;!wO*A4Gv7ww1Laux>y4}_W*?&+M#?5kjUtb0@J%_*<)j&>+~cjPH&5M*Rv+`z-Y zkY13^$N&agRDBXl^O7?P5>phM^K)|(^HLQ2@=Fxl@=JlN;Jn0w;*9)~VyGr2h^CHh zEW(UT3<|7FAdfLgGqZ7Xa<DTqv4}EpFtdm;F*7pBF*1oaFmQ1S*nZP^_DnBpwf7e0 ze@0LK6|*1lug%RlyNYf7(|S)ENm1WZOjq8gXCB*^!W8$Yx`Hiw_kZ=YJzsyvCawN$ zQ6i$kv}&2BQB(U0|G6v~Y!e?^dQ3c$wb1hE{YM^uU3FfnU!E2CG4H0#Q{K#*kGZCp shD|wee9wBO2Q%CLe%&89<;isRH4+)_i#o1N{mC7?a|0U#Gtlb{0C5hbga7~l literal 0 HcmV?d00001 diff --git a/.oniro-ci/containers/dco-check/ppa/zyga-ubuntu-oh-tools.gpg.license b/.oniro-ci/containers/dco-check/ppa/zyga-ubuntu-oh-tools.gpg.license new file mode 100644 index 00000000..5f636925 --- /dev/null +++ b/.oniro-ci/containers/dco-check/ppa/zyga-ubuntu-oh-tools.gpg.license @@ -0,0 +1,2 @@ +SPDX-License-Identifier: Apache-2.0 +SPDX-FileCopyrightText: 2020 Huawei Inc. diff --git a/.oniro-ci/containers/docs-builder/.gitconfig b/.oniro-ci/containers/docs-builder/.gitconfig new file mode 100644 index 00000000..8b2e0662 --- /dev/null +++ b/.oniro-ci/containers/docs-builder/.gitconfig @@ -0,0 +1,6 @@ +# SPDX-FileCopyrightText: 2021 Huawei Inc. +# SPDX-License-Identifier: Apache-2.0 + +[user] + name = OSTC Builder + email = ostc-builder@example.org diff --git a/.oniro-ci/containers/docs-builder/Dockerfile b/.oniro-ci/containers/docs-builder/Dockerfile new file mode 100644 index 00000000..d967e47d --- /dev/null +++ b/.oniro-ci/containers/docs-builder/Dockerfile @@ -0,0 +1,17 @@ +# SPDX-FileCopyrightText: Huawei Inc. +# SPDX-License-Identifier: Apache-2.0 + +FROM ubuntu:20.10 + +COPY --chown=root:root ppa/zyga-ubuntu-oh-tools-groovy.list /etc/apt/sources.list.d/ +COPY --chown=root:root ppa/zyga-ubuntu-oh-tools.gpg /etc/apt/trusted.gpg.d/ + +ARG DEBIAN_FRONTEND="noninteractive" +RUN apt-get update -qq \ + && apt-get install -y eatmydata \ + && eatmydata apt-get install -qq -y \ + git-repo git \ + python3-sphinx python3-sphinx-rtd-theme python3-recommonmark python3-sphinx-tabs \ + python3-sphinxcontrib.plantuml \ + && eatmydata apt-get install -qq -y 'ca-certificates=20210119~20.10.1' \ + && eatmydata apt-get clean && rm -rf /var/lib/apt/lists/* diff --git a/.oniro-ci/containers/docs-builder/README.md b/.oniro-ci/containers/docs-builder/README.md new file mode 100644 index 00000000..7b9bf6c9 --- /dev/null +++ b/.oniro-ci/containers/docs-builder/README.md @@ -0,0 +1,8 @@ +<!-- +SPDX-FileCopyrightText: 2021 Huawei Inc. +SPDX-License-Identifier: Apache-2.0 +--> + +# Documentation builder for Oniro + +This container provides repo, sphinx and several extensions. diff --git a/.oniro-ci/containers/docs-builder/ppa/zyga-ubuntu-oh-tools-groovy.list b/.oniro-ci/containers/docs-builder/ppa/zyga-ubuntu-oh-tools-groovy.list new file mode 100644 index 00000000..2479e09f --- /dev/null +++ b/.oniro-ci/containers/docs-builder/ppa/zyga-ubuntu-oh-tools-groovy.list @@ -0,0 +1,4 @@ +# SPDX-License-Identifier: Apache-2.0 +# SPDX-FileCopyrightText: 2020 Huawei Inc. +deb http://ppa.launchpad.net/zyga/oh-tools/ubuntu/ groovy main +# deb-src http://ppa.launchpad.net/zyga/oh-tools/ubuntu/ groovy main diff --git a/.oniro-ci/containers/docs-builder/ppa/zyga-ubuntu-oh-tools.gpg b/.oniro-ci/containers/docs-builder/ppa/zyga-ubuntu-oh-tools.gpg new file mode 100644 index 0000000000000000000000000000000000000000..b64a0ccb8bff314af290156d2c4c564edea3eca3 GIT binary patch literal 402 zcmbQy%i=xL<Q^jn!`3+uB4>ZtX>rd+bf<ok;CJO)4%?RQd#&H>_WEb>lYNcd^G#aQ z=Pdi&bj4dcuE8S2`dEM4Wq*OoG1Z@SrcM14{^w5qb#1*^SM9<IuDTc%g%>3@GkN~p zJ;!wO*A4Gv7ww1Laux>y4}_W*?&+M#?5kjUtb0@J%_*<)j&>+~cjPH&5M*Rv+`z-Y zkY13^$N&agRDBXl^O7?P5>phM^K)|(^HLQ2@=Fxl@=JlN;Jn0w;*9)~VyGr2h^CHh zEW(UT3<|7FAdfLgGqZ7Xa<DTqv4}EpFtdm;F*7pBF*1oaFmQ1S*nZP^_DnBpwf7e0 ze@0LK6|*1lug%RlyNYf7(|S)ENm1WZOjq8gXCB*^!W8$Yx`Hiw_kZ=YJzsyvCawN$ zQ6i$kv}&2BQB(U0|G6v~Y!e?^dQ3c$wb1hE{YM^uU3FfnU!E2CG4H0#Q{K#*kGZCp shD|wee9wBO2Q%CLe%&89<;isRH4+)_i#o1N{mC7?a|0U#Gtlb{0C5hbga7~l literal 0 HcmV?d00001 diff --git a/.oniro-ci/containers/docs-builder/ppa/zyga-ubuntu-oh-tools.gpg.license b/.oniro-ci/containers/docs-builder/ppa/zyga-ubuntu-oh-tools.gpg.license new file mode 100644 index 00000000..5f636925 --- /dev/null +++ b/.oniro-ci/containers/docs-builder/ppa/zyga-ubuntu-oh-tools.gpg.license @@ -0,0 +1,2 @@ +SPDX-License-Identifier: Apache-2.0 +SPDX-FileCopyrightText: 2020 Huawei Inc. diff --git a/.oniro-ci/containers/npm-cspell/Dockerfile b/.oniro-ci/containers/npm-cspell/Dockerfile new file mode 100644 index 00000000..a5930e21 --- /dev/null +++ b/.oniro-ci/containers/npm-cspell/Dockerfile @@ -0,0 +1,13 @@ +# SPDX-FileCopyrightText: Huawei Inc. +# SPDX-License-Identifier: Apache-2.0 + +FROM ubuntu:21.04 + +ARG DEBIAN_FRONTEND="noninteractive" +RUN apt-get update -qq \ + && apt-get install -y eatmydata \ + && eatmydata apt-get install -qq -y npm \ + && eatmydata apt-get install -qq -y 'ca-certificates=20210119ubuntu0.21.04.1' \ + && eatmydata apt-get clean && rm -rf /var/lib/apt/lists/* + +RUN npm install --global cspell diff --git a/.oniro-ci/containers/npm-cspell/README.md b/.oniro-ci/containers/npm-cspell/README.md new file mode 100644 index 00000000..aa529527 --- /dev/null +++ b/.oniro-ci/containers/npm-cspell/README.md @@ -0,0 +1,8 @@ +<!-- +SPDX-FileCopyrightText: 2021 Huawei Inc. +SPDX-License-Identifier: Apache-2.0 +--> + +# Container with cspell Node package + +This container is useful for spell checking with `cspell lint`. diff --git a/.oniro-ci/containers/reuse/Dockerfile b/.oniro-ci/containers/reuse/Dockerfile new file mode 100644 index 00000000..cc7ad83d --- /dev/null +++ b/.oniro-ci/containers/reuse/Dockerfile @@ -0,0 +1,27 @@ +# Copyright 2020 Huawei Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# SPDX-License-Identifier: Apache-2.0 + +FROM ubuntu:20.04 + +COPY --chown=root:root ppa/zyga-ubuntu-oh-tools-focal.list /etc/apt/sources.list.d/ +COPY --chown=root:root ppa/zyga-ubuntu-oh-tools.gpg /etc/apt/trusted.gpg.d/ + +ARG DEBIAN_FRONTEND="noninteractive" +RUN apt-get update -qq \ + && apt-get install -y eatmydata \ + && eatmydata apt-get install -qq -y reuse=0.13.0-1 'spread=0~20201124-1+ohos3' \ + && eatmydata apt-get install -qq -y 'ca-certificates=20210119~20.04.2' \ + && eatmydata apt-get clean && rm -rf /var/lib/apt/lists/* diff --git a/.oniro-ci/containers/reuse/README.md b/.oniro-ci/containers/reuse/README.md new file mode 100644 index 00000000..c73d49c5 --- /dev/null +++ b/.oniro-ci/containers/reuse/README.md @@ -0,0 +1,8 @@ +<!-- +SPDX-FileCopyrightText: 2020 Huawei Inc. +SPDX-License-Identifier: Apache-2.0 +--> + +# REUSE check for Oniro + +This container provides the reuse package. diff --git a/.oniro-ci/containers/reuse/ppa/zyga-ubuntu-oh-tools-focal.list b/.oniro-ci/containers/reuse/ppa/zyga-ubuntu-oh-tools-focal.list new file mode 100644 index 00000000..729b1c91 --- /dev/null +++ b/.oniro-ci/containers/reuse/ppa/zyga-ubuntu-oh-tools-focal.list @@ -0,0 +1,4 @@ +# SPDX-License-Identifier: Apache-2.0 +# SPDX-FileCopyrightText: 2020 Huawei Inc. +deb http://ppa.launchpad.net/zyga/oh-tools/ubuntu/ focal main +# deb-src http://ppa.launchpad.net/zyga/oh-tools/ubuntu/ focal main diff --git a/.oniro-ci/containers/reuse/ppa/zyga-ubuntu-oh-tools.gpg b/.oniro-ci/containers/reuse/ppa/zyga-ubuntu-oh-tools.gpg new file mode 100644 index 0000000000000000000000000000000000000000..b64a0ccb8bff314af290156d2c4c564edea3eca3 GIT binary patch literal 402 zcmbQy%i=xL<Q^jn!`3+uB4>ZtX>rd+bf<ok;CJO)4%?RQd#&H>_WEb>lYNcd^G#aQ z=Pdi&bj4dcuE8S2`dEM4Wq*OoG1Z@SrcM14{^w5qb#1*^SM9<IuDTc%g%>3@GkN~p zJ;!wO*A4Gv7ww1Laux>y4}_W*?&+M#?5kjUtb0@J%_*<)j&>+~cjPH&5M*Rv+`z-Y zkY13^$N&agRDBXl^O7?P5>phM^K)|(^HLQ2@=Fxl@=JlN;Jn0w;*9)~VyGr2h^CHh zEW(UT3<|7FAdfLgGqZ7Xa<DTqv4}EpFtdm;F*7pBF*1oaFmQ1S*nZP^_DnBpwf7e0 ze@0LK6|*1lug%RlyNYf7(|S)ENm1WZOjq8gXCB*^!W8$Yx`Hiw_kZ=YJzsyvCawN$ zQ6i$kv}&2BQB(U0|G6v~Y!e?^dQ3c$wb1hE{YM^uU3FfnU!E2CG4H0#Q{K#*kGZCp shD|wee9wBO2Q%CLe%&89<;isRH4+)_i#o1N{mC7?a|0U#Gtlb{0C5hbga7~l literal 0 HcmV?d00001 diff --git a/.oniro-ci/containers/reuse/ppa/zyga-ubuntu-oh-tools.gpg.license b/.oniro-ci/containers/reuse/ppa/zyga-ubuntu-oh-tools.gpg.license new file mode 100644 index 00000000..5f636925 --- /dev/null +++ b/.oniro-ci/containers/reuse/ppa/zyga-ubuntu-oh-tools.gpg.license @@ -0,0 +1,2 @@ +SPDX-License-Identifier: Apache-2.0 +SPDX-FileCopyrightText: 2020 Huawei Inc. -- GitLab