Adopt Open JDK v2.0.0 Release Notes
Release Date: 2018-09-26 // over 6 years ago-
๐ A major overhaul to split out Docker and Native builds, fix a host of small ๐ issues and place build jobs into Groovy Pipeline scripts.
๐ Core Build Changes
๐ง 1. configureBuild.sh added. The pre-build configuration logic now resides in this script. ๐ 1. native-build.sh added. This script is invoked for building (Adopt) OpenJDK binaries natively. ๐ 1. docker-build.sh added. This script is invoked for building (Adopt) OpenJDK ๐ณ binaries in a Docker container.
- sbin/prepareWorkspace.sh added
- sbin/colour-codes.sh removed to simplify code ๐ 1. makejdk.sh removed - please use makejdk-any-platform.sh or (rarely) ๐ sbin/build.sh instead.
- sbin/common-functions.sh removed and its logic split
- sbin/common/common.sh added
- sbin/common/config_init.sh added
- sbin/common/constants.sh added ๐ 1. sbin/build.template added for saving off the configure configuration. ๐ฆ 1. sbin/signalhandler.sh moved to signalhandler.sh ๐ 1. sbin/build.sh enhanced, now requires a 'saved' build configuration to run. ๐ This 'saved' build configuration is created by makejdk-any-platform.sh but can be generated manually as well.
- sign.sh added for code signing functionality.
๐ makejdk-any-platform.sh, build.sh, makejdk.sh usage changes
๐ 1. More versions added,
jdk8u | jdk9 | jdk10 | jfx | amber
are now all supported ๐ 1.-B
is now used for specifying the build number (long form--build-number
). ๐ 1.-bv
is removed, (long form--variant
changes to--build-variant
). ๐ 1.-c
(long form--clean-docker-build
) added to build from a clean docker container. ๐ง 1.-ca
changes to-C
, (long form--configure-args
stays the same).--clean-git-repos
, added to clean out any 'bad' local git repo you already have. ๐ 1.-D
(long form--docker
) added for building in a docker container. ๐ 1.-dsgc
is removed, (long form--disable-shallow-git-clone
stays the same).-ftd
changes to-f
, (long form--freetype-dir
stays the same). ๐ 1.--freetype-build-param
, specify any special freetype build parameters (required for some OS's). ๐ 1.--freetype-version
, specify the version of freetype you are building.-h
(long form--help
) added. ๐ณ 1.-i
(long form--ignore-container
) added to ignore existing docker container. ๐ 1.-j, --jtreg
and-js, --jtreg-subsets
are removed as tests should be run via the openjdk-tests repo / project.-J
(long form--jdk-boot-dir
added to set JDK boot dir. ๐ 1.-nc
(long form--no-colour
) is removed. ๐ 1.-p
(long form--processors
) added to set number of processors in docker build.-sf
changes to-F
, (long form--skip-freetype
stays the same). ๐ณ 1.--sudo
added to run the docker container as root. ๐ 1.--tmp-space-build
(set a temporary build space if regular workspace is unavailable).-T
(long form--target-file-name
added to specify the final name of the binary. โก๏ธ 1.-u
(long form--update-version
) added to specify the update version. ๐ 1.--use-jep319-certs
added to use certs defined in JEP319 for OpenJDK 8/9 builds.-V
(long form--jvm-variant
specify the JVM variant (server or client).
๐ Please see makejdk-any-platform.1 man page for full details.
โ Test Changes
- sbin/jtreg.sh removed (superseded by the openjdk-tests project).
- sbin/jtreg_prep.sh removed (superseded by the openjdk-tests project).
๐ณ Docker Support
๐ 1.
-D
(long form--docker
) has been added for building in a docker container. ๐ 1.-c
(long form--clean-docker-build
) has been added to build from a clean ๐ณ docker container. ๐ณ 1.-i
(long form--ignore-container
) has been added to ignore existing docker container. ๐ 1.-p
(long form--processors
) added to set number of processors in docker build. ๐ณ 1.--sudo
added to run the docker container as root. ๐ 1. docker-build.sh added. This script is invoked for building (Adopt) OpenJDK ๐ณ binaries in a Docker container. ๐ณ 1. docker/jdk/x86_64/ubuntu/Dockerfile updated for various bug fixes. ๐ณ 1. docker/jdk/x86_64/ubuntu/dockerConfiguration.sh files added. These ๐ contain Docker specific environment variables that the build scripts need (as opposed to falsely picking up the underlying native env).๐ Build Farm Support
๐ 1. New build-farm/make-adopt-build-farm.sh added for the new AdoptOpenJDK ๐ Build Farm jenkins pipeline to build Adopt OpenJDK binaries. Sets the default ๐ท environment variables that are currently set in individual jobs. This allows us to now track and version these variables. ๐ 1. New build-farm/set-platform-specific-configurations.sh added for the new ๐ AdoptOpenJDK Build Farm jenkins pipeline to build Adopt OpenJDK binaries. Sets 0๏ธโฃ the default environment variables that are currently set in individual jobs.
This allows us to now track and version these variables. ๐ง 1. New build-farm/platform-specific-configurations/.sh added for ๐ the new AdoptOpenJDK Build Farm jenkins pipeline to build Adopt OpenJDK binaries.
0๏ธโฃ Sets the default environment variables for specific platforms that are currently ๐ท set in individual jobs. This allows us to now track and version these variables. ๐ 1. New _build-farm/sign-releases.sh added for the new AdoptOpenJDK Build Farm ๐ jenkins pipeline to code sign Adopt OpenJDK binaries (Mac and Windows for now). ๐ 1. _pipelines/build/common/build_base_file.groovy added. This co-ordinates the various pipeline builds. ๐ 1.pipelines/build/common/create_job_from_template.groovy added. This dynamically ๐ท creates jenkins jobs for a particular pipeline run (e.g. All jdk8u jobs). ๐ 1. pipelines/build/common/openjdk_build_pipeline.groovy added. This forms the base ๐ pipeline code for each build. ๐ 1. pipelines/build/openjdk<version>_<variant>_<nightly|release>_pipeline.groovy ๐ท files added. These will eventually replace the existing individual jobs with a Pipeline for each version and variant. ๐ 1. pipelines/build/openjdk<version>_pipeline.groovy ๐ง files added. These define the configurations for the ๐ pipelines/build/common/create_job_from_template.groovy to create jobs for a pipeline run.๐ Documentation and Misc
- README.md updated to reflect new scripts. ๐ 1. docs/build.md added to describe how the build farm utilises the scripts. ๐ 1. docs/generateBuildMatrix.sh added to build a table of build statuses. ๐ 1. docs/generateTestMatrix.sh added to build a table of test statuses. ๐ 1. docs/images/AdoptOpenJDK_Build_Script_Relationships.png added to show script relationship. ๐ 1. docs/images/sequence.svg added to show pipeline workflow.
- .gitignore changed to reflect new
workspace
base directory, please check your local .gitignore for the diff. ๐ 1. makejdk-any-platform.1 man page updated to reflect new script usage.
Previous changes from v1.0.0
-
๐ See Commit History up until May the 14th 2018.