From cf757fe4ebead1804f22c618c93262f9ee86a7b7 Mon Sep 17 00:00:00 2001 From: tomer doron Date: Wed, 7 Oct 2020 16:46:50 -0700 Subject: [PATCH] remove symbolicate-linux-fatal from Docker (#81) motivation: we are not actually using symbolicate-linux-fatal in any meaningful way in CI and it's pinned to the master branch which has been removed changes: remove symbolicate-linux-fatal fetching from Docker --- docker/Dockerfile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index cfd977c..3f2a2e7 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -24,10 +24,6 @@ RUN gem install jazzy --no-ri --no-rdoc RUN mkdir -p $HOME/.tools RUN echo 'export PATH="$HOME/.tools:$PATH"' >> $HOME/.profile -# script to allow mapping framepointers on linux (until part of the toolchain) -RUN wget -q https://raw.githubusercontent.com/apple/swift/master/utils/symbolicate-linux-fatal -O $HOME/.tools/symbolicate-linux-fatal -RUN chmod 755 $HOME/.tools/symbolicate-linux-fatal - # swiftformat (until part of the toolchain) ARG swiftformat_version=0.44.6