From 28b00a7c9edebaafbd297b82c6be9af85c138cc2 Mon Sep 17 00:00:00 2001 From: NvTimLiu <50287591+NvTimLiu@users.noreply.github.com> Date: Tue, 2 Mar 2021 17:45:21 +0800 Subject: [PATCH] Cleanup unused Jenkins files and scripts (#1829) * Cleanup unused Jenkins files and scripts https://github.com/NVIDIA/spark-rapids/issues/1568 Move Databricks scripts to GitLab so we can use the common scripts for the nightly build job and integration tests job Remove unused Dockerfiles Signed-off-by: Tim Liu * rm Dockerfile.integration.ubuntu16 * Restore Databricks nightly scripts Signed-off-by: Tim Liu --- jenkins/Dockerfile.integration.ubuntu16 | 36 ----------------------- jenkins/Dockerfile.ubuntu16 | 39 ------------------------- 2 files changed, 75 deletions(-) delete mode 100644 jenkins/Dockerfile.integration.ubuntu16 delete mode 100644 jenkins/Dockerfile.ubuntu16 diff --git a/jenkins/Dockerfile.integration.ubuntu16 b/jenkins/Dockerfile.integration.ubuntu16 deleted file mode 100644 index 4027aa8fa77..00000000000 --- a/jenkins/Dockerfile.integration.ubuntu16 +++ /dev/null @@ -1,36 +0,0 @@ -# -# Copyright (c) 2019-2020, NVIDIA CORPORATION. All rights reserved. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -### -# -# Arguments: CUDA_VER=10.1 or 10.2 -# -### -ARG CUDA_VER=10.1 - -FROM nvidia/cuda:${CUDA_VER}-runtime-ubuntu16.04 - -#Install java-8, maven, docker image -RUN apt-get update -y && \ - apt-get install -y software-properties-common -RUN add-apt-repository ppa:deadsnakes/ppa && \ - apt-get update -y && \ - apt-get install -y maven \ - openjdk-8-jdk python3.8 python3.8-distutils python3-setuptools -RUN python3.8 -m easy_install pip - -RUN ln -s /usr/bin/python3.8 /usr/bin/python -RUN python -m pip install pytest sre_yield diff --git a/jenkins/Dockerfile.ubuntu16 b/jenkins/Dockerfile.ubuntu16 deleted file mode 100644 index b6915a9fd6f..00000000000 --- a/jenkins/Dockerfile.ubuntu16 +++ /dev/null @@ -1,39 +0,0 @@ -# -# Copyright (c) 2019-2020, NVIDIA CORPORATION. All rights reserved. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -### -# -# Build the image for rapids-plugin development environment -# -# Arguments: CUDA_VER=10.1 or 10.2 -# -### - -ARG CUDA_VER=10.1 - -FROM nvidia/cuda:${CUDA_VER}-runtime-ubuntu16.04 - -#Install java-8, maven, docker image -RUN apt-get update -y && \ - apt-get install -y software-properties-common -RUN add-apt-repository ppa:deadsnakes/ppa && \ - apt-get update -y && \ - apt-get install -y maven \ - openjdk-8-jdk python3.8 python3.8-distutils python3-setuptools tzdata git -RUN python3.8 -m easy_install pip - -RUN ln -s /usr/bin/python3.8 /usr/bin/python -RUN python -m pip install pytest sre_yield requests pandas pyarrow