tree: f88a35c27058a71606e5ede9c0df7eec808efe4c [path history] [tgz]
  1. debian11/
  2. debian12/
  3. fedora37/
  4. oraclelinux9/
  5. ubuntu22/
  6. ubuntu24/
  7. .gitignore
  8. os-list.txt
  9. README.md
  10. reinit.sh
  11. run-all.sh
  12. run-one.sh
docker/README.md

Supported OSes

  • Debian 11 and 12
  • Fedora 37
  • Ubuntu 22 and 24
  • Oracle Linux 9

Pre-built Images

Apache ORC community provides a set of pre-built docker images and uses it during testing.

docker pull apache/orc-dev:ubuntu22

You can find all tags here.

https://hub.docker.com/r/apache/orc-dev/tags

Test

To test against all of the Linux OSes against Apache's main branch:

cd docker
./run-all.sh apache main

Using local as the owner will cause the scripts to use the local repository.

The scripts are:

  • run-all.sh owner branch - test the given owner's branch on all OSes
  • run-one.sh owner branch os - test the owner's branch on one OS
  • reinit.sh - rebuild all of the base images without the image cache

run-all.sh, run-one.sh and reinit.sh tests both on jdk17 and 21 across OSes

A base image for each OS is built using:

cd docker/$os
FOR jdk21: docker build -t "orc-$os-jdk21" --build-arg jdk=21 .

Clean up

docker container prune
docker image prune