summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorSam Estep <sam@samestep.com>2025-03-20 10:29:44 -0400
committerGitHub <noreply@github.com>2025-03-20 14:29:44 +0000
commit96de7f6a9dccabd1801dcbf1eb76e0967d7f5fe8 (patch)
tree7dfa73626978bb9f1358cb40a978a47ef2471d95 /.github
parent30068d75fb97fecc163253fb331daddbb09234e6 (diff)
Delete unused Dockerfile (#6629)
Co-authored-by: Ellie Hermaszewska <ellieh@nvidia.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/dockerfiles/ubuntu-18.04-x64/Dockerfile15
1 files changed, 0 insertions, 15 deletions
diff --git a/.github/workflows/dockerfiles/ubuntu-18.04-x64/Dockerfile b/.github/workflows/dockerfiles/ubuntu-18.04-x64/Dockerfile
deleted file mode 100644
index bbdfe1084..000000000
--- a/.github/workflows/dockerfiles/ubuntu-18.04-x64/Dockerfile
+++ /dev/null
@@ -1,15 +0,0 @@
-FROM ubuntu:18.04
-RUN apt update
-RUN apt install -y software-properties-common wget git build-essential zip libx11-dev zlib1g-dev
-RUN add-apt-repository ppa:ubuntu-toolchain-r/test -y
-RUN apt update
-RUN apt install -y gcc-9 g++-9
-RUN update-alternatives \
- --install /usr/bin/gcc gcc /usr/bin/gcc-9 100 \
- --slave /usr/bin/g++ g++ /usr/bin/g++-9 \
- --slave /usr/bin/gcc-ar gcc-ar /usr/bin/gcc-ar-9 \
- --slave /usr/bin/gcc-nm gcc-nm /usr/bin/gcc-nm-9 \
- --slave /usr/bin/gcc-ranlib gcc-ranlib /usr/bin/gcc-ranlib-9 \
- --slave /usr/bin/gcov gcov /usr/bin/gcov-9 \
- --slave /usr/bin/gcov-dump gcov-dump /usr/bin/gcov-dump-9 \
- --slave /usr/bin/gcov-tool gcov-tool /usr/bin/gcov-tool-9