Skip to content

Commit

Permalink
some more cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
iker-barriocanal committed Oct 10, 2023
1 parent d7ff8a6 commit 681d3f3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 36 deletions.
44 changes: 8 additions & 36 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ FROM centos:7 AS relay-deps
ARG RUST_TOOLCHAIN_VERSION
ENV RUST_TOOLCHAIN_VERSION=${RUST_TOOLCHAIN_VERSION}

ARG BUILD_ARCH

RUN yum -y update && yum clean all \
&& yum -y install centos-release-scl epel-release \
# install a modern compiler toolchain
Expand All @@ -19,39 +21,15 @@ RUN yum -y update && yum clean all \
&& rm -rf /var/cache/yum \
&& ln -s /usr/bin/cmake3 /usr/bin/cmake


# yum -y update && yum clean all && yum -y install centos-release-scl epel-release cmake3 devtoolset-10 git llvm-toolset-7.0-clang-devel && yum clean all && rm -rf /var/cache/yum && ln -s /usr/bin/cmake3 /usr/bin/cmake

# RUN echo 'dont cache mee'
RUN echo "build arch: ${BUILD_ARCH}"

# RUN if [ ${BUILD_ARCH} == "aarch64" ]; then \
RUN if true ; then \
yum -y install git make libffi-devel curl dnf epel-release ca-certificates \
RUN if [ ${BUILD_ARCH} == "aarch64" ]; then \
yum -y install git make libffi-devel curl dnf ca-certificates \
&& curl -L -s https://www.centos.org/keys/RPM-GPG-KEY-CentOS-7-aarch64 > /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64 \
&& cat /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64 >> /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 ; \
fi

# yum -y install git make libffi-devel curl dnf epel-release ca-certificates && curl -L -s https://www.centos.org/keys/RPM-GPG-KEY-CentOS-7-aarch64 > /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64 && cat /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64 >> /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

RUN echo "arch: ${BUILD_ARCH}"
# RUN if [ ${BUILD_ARCH} == "aarch64" ]; then \
# echo "yes" ; else echo "no"; fi

# qemu-user not found for aarch64
# RUN if [ ${BUILD_ARCH} == "aarch64" ]; then \
RUN if true ; then \
yum -y install gcc glibc glibc-devel \
# dnf --release 7 --forcearch aarch64 install gcc glibc glibc-devel \
# && dnf --release 7 install gcc-aarch64-linux-gnu qemu-user \
&& yum -y install gcc-aarch64-linux-gnu \
# && dnf --release 7 --forcearch aarch64 install gcc-aarch64-linux-gnu \
# && dnf --release 7 --forcearch aarch64 install gcc-aarch64-linux-gnu qemu-user \
&& cat /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7-aarch64 >> /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7 \
&& yum -y install gcc glibc glibc-devel gcc-aarch64-linux-gnu \
&& dnf -y --release 7 --forcearch aarch64 --installroot "/usr/aarch64-linux-gnu/sys-root/" install gcc glibc glibc-devel \
# && dnf -y --release 7 --forcearch aarch64 --installroot "/usr/aarch64-linux-gnu/sys-root/" install gcc-aarch64-linux-gnu \
# && dnf -y --release 7 --forcearch aarch64 --installroot "/usr/aarch64-linux-gnu/sys-root/" install gcc-aarch64-linux-gnu gcc-aarch64-linux-gnueabi gcc-aarch64-linux-gnueabihf qemu-user \
&& ln -s "/usr/aarch64-linux-gnu/sys-root/lib64/libgcc_s.so.1" "/usr/aarch64-linux-gnu/sys-root/lib64/libgcc_s.so" \
# NOTE(iker): work-around to create a cmake toolchain file for arch-specific builds, since only objcopy is needed.
# NOTE(iker): work-around to create a cmake toolchain file for arch-specific
# builds, since only objcopy is needed.
&& rm -rf "/usr/bin/objcopy" && ln -s "/usr/bin/aarch64-linux-gnu-objcopy" "/usr/bin/objcopy" ; \
fi

Expand All @@ -64,8 +42,6 @@ RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs \
&& echo -e '[registries.crates-io]\nprotocol = "sparse"\n[net]\ngit-fetch-with-cli = true' > $CARGO_HOME/config \
&& rustup target add aarch64-unknown-linux-gnu

# curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal --default-toolchain=${RUST_TOOLCHAIN_VERSION} && echo -e '[registries.crates-io]\nprotocol = "sparse"\n[net]\ngit-fetch-with-cli = true' > $CARGO_HOME/config && rustup target add aarch64-unknown-linux-gnu

COPY --from=sentry-cli /bin/sentry-cli /bin/sentry-cli

WORKDIR /work
Expand All @@ -89,10 +65,6 @@ RUN : \
TARGET=${BUILD_TARGET} \
RELAY_FEATURES=${RELAY_FEATURES}

# export BUILD_TARGET="aarch64-unknown-linux-gnu"
# scl enable devtoolset-10 llvm-toolset-7.0 -- make build-linux-release TARGET=${BUILD_TARGET} RELAY_FEATURES=""
# scl enable devtoolset-10 llvm-toolset-7.0 -- cd relay && cargo build --release --locked --target=aarch64-unknown-linux-gnu

# Collect source bundle
# Produces `relay-bin`, `relay-debug.zip` and `relay.src.zip` in current directory
RUN : \
Expand Down
1 change: 1 addition & 0 deletions scripts/docker-build-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ BUILD_IMAGE="us.gcr.io/sentryio/relay:deps"
docker pull $BUILD_IMAGE || true
docker buildx build \
--build-arg RUST_TOOLCHAIN_VERSION="$TOOLCHAIN" \
--build-arg BUILD_ARCH="$BUILD_ARCH" \
--platform "linux/${DOCKER_ARCH}" \
--cache-from=${BUILD_IMAGE} \
--target relay-deps \
Expand Down

0 comments on commit 681d3f3

Please sign in to comment.