This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch branch-1.7
in repository https://gitbox.apache.org/repos/asf/orc.git
The following commit(s) were added to refs/heads/branch-1.7 by this push:
new a13cb3258 ORC-1201: Remove `Debian 9` from Docker Tests
a13cb3258 is described below
commit a13cb325889d3e4c8058f89d05ad5b6dd4f1f0ab
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Fri Jun 10 23:35:40 2022 -0700
ORC-1201: Remove `Debian 9` from Docker Tests
### What changes were proposed in this pull request?
This PR aims to remove `Debian 9` from Docker Tests.
### Why are the changes needed?
Debian 9 LTS supports reach EOL on June 30, 2022.
- https://wiki.debian.org/LTS/Using
> The current LTS version is Debian 9 stretch and will be supported from
2020-07-06 to 2022-06-30
### How was this patch tested?
N/A.
Closes #1157 from dongjoon-hyun/ORC-1201.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
(cherry picked from commit b237adb9e9bd6c50ba5ebaf1de0b33f9f7ea360e)
Signed-off-by: Dongjoon Hyun <[email protected]>
---
docker/README.md | 6 +-----
docker/debian9/Dockerfile | 48 -----------------------------------------------
docker/os-list.txt | 1 -
3 files changed, 1 insertion(+), 54 deletions(-)
diff --git a/docker/README.md b/docker/README.md
index d251f0817..04c73d076 100644
--- a/docker/README.md
+++ b/docker/README.md
@@ -1,7 +1,7 @@
## Supported OSes
* CentOS 7
-* Debian 9 and 10
+* Debian 10 and 11
* Ubuntu 18, 20 and 22
## Test
@@ -26,10 +26,6 @@ A base image for each OS is built using:
FOR jdk8: docker build -t "orc-$os-jdk8" --build-arg jdk=8 .
FOR jdk11: docker build -t "orc-$os-jdk11" --build-arg jdk=11 .
-## JDK 11 support
-
-For debian9 & ubuntu16: JDK 11 support isn't provided.
-
## Clean up
docker container prune
diff --git a/docker/debian9/Dockerfile b/docker/debian9/Dockerfile
deleted file mode 100644
index 4aaf7ec6c..000000000
--- a/docker/debian9/Dockerfile
+++ /dev/null
@@ -1,48 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements. See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership. The ASF licenses this file
-# to you 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.
-
-# ORC compile for Debian 9
-#
-
-FROM debian:9
-LABEL maintainer="Apache ORC project <[email protected]>"
-
-RUN apt-get update
-RUN apt-get install -y \
- cmake \
- gcc \
- g++ \
- git \
- libsasl2-dev \
- libssl-dev \
- openjdk-8-jdk \
- make \
- curl \
- maven
-
-WORKDIR /root
-
-VOLUME /root/.m2/repository
-
-CMD if [ ! -d orc ]; then \
- echo "No volume provided, building from apache main."; \
- echo "Pass '-v`pwd`:/root/orc' to docker run to build local source."; \
- git clone https://github.com/apache/orc.git -b main; \
- fi && \
- mkdir build && \
- cd build && \
- cmake ../orc && \
- make package test-out
diff --git a/docker/os-list.txt b/docker/os-list.txt
index 9d199e962..ffd7a3b29 100644
--- a/docker/os-list.txt
+++ b/docker/os-list.txt
@@ -1,5 +1,4 @@
centos7
-debian9
debian10
debian11
ubuntu18