summaryrefslogtreecommitdiffstats
path: root/docker/scripts/lib_dnf.sh
blob: 36107d68cddb9e680de8187af7d4efe6ef3cf970 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
# lib_dnf.sh - Docker build script dnf library.
#              For import only.

# Copyright (c) 2020 Cisco and/or its affiliates.
# 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.

# Don't import more than once.
if [ -n "$(alias lib_dnf_imported 2> /dev/null)" ] ; then
    return 0
fi
alias lib_dnf_imported=true

export CIMAN_DOCKER_SCRIPTS=${CIMAN_DOCKER_SCRIPTS:-"$(dirname $BASH_SOURCE)"}
. $CIMAN_DOCKER_SCRIPTS/lib_common.sh

dump_dnf_package_list() {
    branchname="$(echo $branch | sed -e 's,/,_,')"
    dnf list installed > \
        "$DOCKER_BUILD_LOG_DIR/$FDIOTOOLS_IMAGENAME-$branchname-dnf-packages.log"
}

dnf_install_packages() {
    dnf install -y $@
}

dnf_install_docker_os_package_dependancies() {
    dnf_install_packages dnf-utils
}

dnf_install_docker() {
    # Note: Support for docker has been removed starting with centos-8, so the
    #       only recourse is to pin the latest version by what's in the download dir.
    # Browse the base URL to see what is available & update accordingly.

    if [ "$OS_NAME" = "centos-8" ] ; then
        dnf install -y https://download.docker.com/linux/$OS_ID/$OS_VERSION_ID/$OS_ARCH/stable/Packages/containerd.io-1.3.7-3.1.el8.x86_64.rpm
        dnf install -y https://download.docker.com/linux/$OS_ID/$OS_VERSION_ID/$OS_ARCH/stable/Packages/docker-ce-cli-19.03.13-3.el8.x86_64.rpm
        dnf install -y https://download.docker.com/linux/$OS_ID/$OS_VERSION_ID/$OS_ARCH/stable/Packages/docker-ce-19.03.13-3.el8.x86_64.rpm
    else
        echo_log "WARNING: Docker Image unknown for $OS_NAME!"
    fi
}

generate_dnf_dockerfile() {
    local executor_os_name=$1
    local from_image=$2
    local executor_image=$3
    local from_image_os_id="$(echo $from_image | cut -d: -f2)"

    cat <<EOF >$DOCKERFILE
FROM $from_image AS executor-image
LABEL Description="FD.io CI executor docker image for $executor_os_name/$OS_ARCH"
LABEL Vendor="fd.io"
LABEL Version="$DOCKER_TAG"

# Build Environment Variables
ENV FDIOTOOLS_IMAGE=$executor_image
ENV LC_ALL=C.UTF-8
ENV CIMAN_ROOT="$DOCKER_CIMAN_ROOT"
ENV PATH=$PATH:$DOCKER_CIMAN_ROOT/docker/scripts

# Copy-in build tree containing
# ci-management, vpp, & csit git repos
WORKDIR $DOCKER_BUILD_DIR
COPY . .

# Install baseline packages (minimum build & utils).
#
# ci-management global-jjb requirements:
#   for lf-env.sh:
#       facter
#   from global-jjb/packer/provision/baseline.sh:
#       deltarpm
#       unzip
#       xz
#       puppet
#       python3-pip
#       git
#       git-review
#       perl-XML-XPath
#       make
#       wget
#
# TODO: Fix broken project requirement install targets
#
#   graphviz           for 'make bootstrap-doxygen' (VPP)
#   doxygen            for 'make doxygen' (VPP)
#   enchant            for 'make docs' (VPP)
#   libffi-devel       for python cffi install (Ubuntu20.04/VPP/aarch64)
#   libpcap-devel      for python pypcap install (CSIT)
#   lapack-devel    for python numpy/scipy (CSIT/aarch64)
#   openblas-devel  for python numpy/scipy (CSIT/aarch64)
#
RUN dnf update -y \\
    && dnf install -y \\
        dnf-plugins-core \\
        epel-release \\
    && dnf config-manager --set-enabled PowerTools --set-enabled epel \\
    && dnf clean all
RUN dnf update -y \\
    && dnf install -y \\
        dnf-utils \\
        doxygen \\
        enchant \\
        emacs \\
        facter \\
        git \\
        git-review \\
        graphviz \\
        iproute \\
        java-1.8.0-openjdk \\
        java-1.8.0-openjdk-devel \\
        jq \\
        lapack-devel \\
        libffi-devel \\
        libpcap-devel \\
        make \\
        mawk \\
        mock \\
        openblas-devel \\
        perl \\
        perl-XML-XPath \\
        python3-pip \\
        puppet \\
        rake \\
        rsync \\
        ruby-devel \\
        sudo \\
        tree \\
        unzip \\
        vim \\
        wget \\
        xz \\
    && dnf clean all

# Install OS packages for project branches
#
RUN dbld_vpp_install_packages.sh \\
    && dbld_install_docker.sh \\
    && dbld_csit_install_packages.sh \\
    && dbld_lfit_requirements.sh \\
    && dnf clean all

# CI Runtime Environment
WORKDIR /
ENV VPP_ZOMBIE_NOCHECK=1
RUN gem install package_cloud \\
    && curl -s https://packagecloud.io/install/repositories/fdio/master/script.rpm.sh | sudo bash

# Clean up
RUN dbld_dump_build_logs.sh \\
    && rm -rf /tmp/*
EOF
}