per Intel policy to include file commit date using git cmd below. The policy does not apply to non-Intel (C) notices. git log --follow -C90% --format=%ad --date default <file> | tail -1 and then pull just the 4 digit year from the result. Intel copyrights were not added to files where Intel either had no contribution ot the contribution lacked substance (ie license header updates, formatting changes, etc). Contribution date used "--follow -C95%" to get the most accurate date. Note that several files in this patch didn't end the license/(c) block with a blank comment line so these were added as the vast majority of files do have this last blank line. Simply there for consistency. Signed-off-by: paul luse <paul.e.luse@intel.com> Change-Id: Id5b7ce4f658fe87132f14139ead58d6e285c04d4 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/15192 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Community-CI: Mellanox Build Bot
67 lines
1.8 KiB
Docker
67 lines
1.8 KiB
Docker
# SPDX-License-Identifier: Apache-2.0
|
|
# Copyright (C) 2021 Intel Corporation
|
|
#
|
|
|
|
FROM fedora:35 AS base
|
|
|
|
ARG spdk_repo=/tmp/spdk_repo
|
|
ARG spdk_tar=/spdk.tar.gz
|
|
|
|
# Generic args
|
|
ARG PROXY
|
|
ARG NO_PROXY
|
|
|
|
ENV http_proxy=$PROXY
|
|
ENV https_proxy=$PROXY
|
|
ENV no_proxy=$NO_PROXY
|
|
|
|
COPY --chown=root:root spdk.tar.gz /spdk.tar.gz
|
|
RUN if [[ ! -e $spdk_tar ]]; then printf 'Missing %s\n' "$spdk_tar" >&2; exit 1; fi
|
|
RUN mkdir -p "$spdk_repo" && \
|
|
tar -C "$spdk_repo" -xf "$spdk_tar" && \
|
|
chown -R root:root "$spdk_repo"
|
|
RUN dnf install -y rpm-build
|
|
RUN "$spdk_repo/scripts/pkgdep.sh" -d
|
|
RUN "$spdk_repo/test/common/config/vm_setup.sh" --test-conf=fio
|
|
|
|
# HACK: In case we received a .tar with built SPDK we need to overwrite the
|
|
# configuration to update all the paths make would need to lookup - this is
|
|
# needed since we execute inside a different mount namespace so we won't be
|
|
# able to find any absolute paths that were used prior creating the .tar.
|
|
RUN "$spdk_repo/configure"
|
|
RUN DEPS="no" "$spdk_repo/rpmbuild/rpm.sh" \
|
|
--with-shared \
|
|
--with-virtio \
|
|
--with-fio
|
|
RUN mv "$HOME/rpmbuild/rpm/$(uname -m)/"*.rpm /tmp
|
|
RUN mv "/usr/src/fio/fio" /tmp
|
|
|
|
# Clean things up
|
|
RUN rm -f "$HOME/rpmbuild/rpm/$(uname -m)/"*.rpm
|
|
RUN rm -f "$spdk_tar"
|
|
RUN rm -rf "$spdk_repo"
|
|
RUN dnf clean all
|
|
|
|
# We are doing a multi-stage build here. This means that previous image,
|
|
# base, is going to end up as an intermediate one, untagged, <none> - this
|
|
# image can be then manually removed (--force-rm doesn't work here. Go
|
|
# figure).
|
|
FROM fedora:35 AS spdk
|
|
|
|
LABEL maintainer=spdk.io
|
|
|
|
# Proxy configuration must be set for each build separately...
|
|
ARG PROXY
|
|
ARG NO_PROXY
|
|
|
|
ENV http_proxy=$PROXY
|
|
ENV https_proxy=$PROXY
|
|
ENV no_proxy=$NO_PROXY
|
|
|
|
# Copy SPDK's RPMs built during pre-install step.
|
|
COPY --from=base /tmp/*.rpm /tmp/
|
|
COPY --from=base /tmp/fio /tmp/
|
|
# Wrap up the image
|
|
COPY post-install /install
|
|
RUN /install
|