diff --git a/ci-archlinux.dockerfile b/ci-archlinux.dockerfile index 127c03c..1e0d994 100644 --- a/ci-archlinux.dockerfile +++ b/ci-archlinux.dockerfile @@ -20,7 +20,6 @@ RUN pacman -Syu --needed --noconfirm \ git \ libxml2 \ make \ - mold \ ninja \ python \ python-numpy \ diff --git a/ci-fedora.dockerfile b/ci-fedora.dockerfile index d22f5eb..bdfed41 100644 --- a/ci-fedora.dockerfile +++ b/ci-fedora.dockerfile @@ -19,7 +19,6 @@ RUN dnf -y update && \ redhat-lsb-core \ boost-devel \ mpich-devel \ - mold \ ninja-build \ petsc-mpich-devel \ eigen3-devel \ diff --git a/ci-ubuntu-2004.dockerfile b/ci-ubuntu-2004.dockerfile index aaf69a2..0dbf1bf 100644 --- a/ci-ubuntu-2004.dockerfile +++ b/ci-ubuntu-2004.dockerfile @@ -35,7 +35,4 @@ RUN apt-get -qq update && \ wget \ && rm -rf /var/lib/apt/lists/* -COPY ubuntu/mold-install /usr/local/bin/mold-install -RUN mold-install && mold --version - CMD ["/bin/bash", "--login"] diff --git a/ci-ubuntu-2204.dockerfile b/ci-ubuntu-2204.dockerfile index 735d157..9859a8e 100644 --- a/ci-ubuntu-2204.dockerfile +++ b/ci-ubuntu-2204.dockerfile @@ -35,9 +35,6 @@ RUN apt-get -qq update && \ wget \ && rm -rf /var/lib/apt/lists/* -COPY ubuntu/mold-install /usr/local/bin/mold-install -RUN mold-install && mold --version - # Environment variables are set in the .env file COPY --chown=root:root ginkgo/99-ginkgo-env.sh /etc/profile.d/ COPY ginkgo/ginkgo-install.sh ginkgo-install.sh diff --git a/ci-ubuntu-2404.dockerfile b/ci-ubuntu-2404.dockerfile index 6c125ad..e058344 100644 --- a/ci-ubuntu-2404.dockerfile +++ b/ci-ubuntu-2404.dockerfile @@ -25,7 +25,6 @@ RUN apt-get -qq update && \ libeigen3-dev \ libxml2-dev \ lintian \ - mold \ lsb-release \ ninja-build \ petsc-dev \ diff --git a/ubuntu/mold-install b/ubuntu/mold-install deleted file mode 100755 index 5f55865..0000000 --- a/ubuntu/mold-install +++ /dev/null @@ -1,9 +0,0 @@ -# This script installs the mold linker -VERSION=2.4.0 - -set -e - -wget -q -O - --timeout=10 --waitretry=3 --retry-connrefused https://github.com/rui314/mold/releases/download/v${VERSION}/mold-${VERSION}-$(uname -m)-linux.tar.gz | tar -C /usr/local --strip-components=1 --no-overwrite-dir -xzf - -mold --version -ln -s /usr/local/bin/mold /usr/local/bin/ld -which ld