THIS DOCUMENT IS NO LONGER POPULATED. PLEASE SEE THE MASTER COMMIT HISTORY FOR A MORE UP TO DATE LOG
See Commit History up until May the 14th 2018.
A major overhaul to split out Docker and Native builds, fix a host of small issues and place build jobs into Groovy Pipeline scripts.
- configureBuild.sh added. The pre-build configuration logic now resides in this script.
- native-build.sh added. This script is invoked for building (Adopt) OpenJDK binaries natively.
- 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
- 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
- sbin/build.template added for saving off the configure configuration.
- sbin/signalhandler.sh moved to signalhandler.sh
- 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.
- More versions added,
jdk8u | jdk9 | jdk10 | jfx | amberare now all supported -Bis now used for specifying the build number (long form--build-number).-bvis removed, (long form--variantchanges to--build-variant).-c(long form--clean-docker-build) added to build from a clean docker container.-cachanges to-C, (long form--configure-argsstays the same).--clean-git-repos, added to clean out any 'bad' local git repo you already have.-D(long form--docker) added for building in a docker container.-dsgcis removed, (long form--disable-shallow-git-clonestays the same).-ftdchanges to-f, (long form--freetype-dirstays the same).--freetype-build-param, specify any special freetype build parameters (required for some OS's).--freetype-version, specify the version of freetype you are building.-h(long form--help) added.-i(long form--ignore-container) added to ignore existing docker container.-j, --jtregand-js, --jtreg-subsetsare removed as tests should be run via the openjdk-tests repo / project.-J(long form--jdk-boot-diradded to set JDK boot dir.-nc(long form--no-colour) is removed.-p(long form--processors) added to set number of processors in docker build.-sfchanges to-F, (long form--skip-freetypestays the same).--sudoadded to run the docker container as root.--tmp-space-build(set a temporary build space if regular workspace is unavailable).-T(long form--target-file-nameadded to specify the final name of the binary.-u(long form--update-version) added to specify the update version.--use-jep319-certsadded to use certs defined in JEP319 for OpenJDK 8/9 builds.-V(long form--jvm-variantspecify the JVM variant (server or client).
Please see makejdk-any-platform.1 man page for full details.
- sbin/jtreg.sh removed (superseded by the openjdk-tests project).
- sbin/jtreg_prep.sh removed (superseded by the openjdk-tests project).
-D(long form--docker) has been added for building in a docker container.-c(long form--clean-docker-build) has been added to build from a clean docker container.-i(long form--ignore-container) has been added to ignore existing docker container.-p(long form--processors) added to set number of processors in docker build.--sudoadded to run the docker container as root.- docker-build.sh added. This script is invoked for building (Adopt) OpenJDK binaries in a Docker container.
- docker/jdk/x86_64/ubuntu/Dockerfile updated for various bug fixes.
- 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).
- 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.
- New build-farm/set-platform-specific-configurations.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. - New _build-farm/platform-specific-configurations/.sh added for
the new AdoptOpenJDK Build Farm jenkins pipeline to build Adopt OpenJDK binaries.
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. - 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).
- 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).
- pipelines/build/common/openjdk_build_pipeline.groovy added. This forms the base pipeline code for each build.
- 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.
- 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.
- README.md updated to reflect new scripts.
- docs/build.md added to describe how the build farm utilises the scripts.
- docs/generateBuildMatrix.sh added to build a table of build statuses.
- docs/generateTestMatrix.sh added to build a table of test statuses.
- docs/images/AdoptOpenJDK_Build_Script_Relationships.png added to show script relationship.
- docs/images/sequence.svg added to show pipeline workflow.
- .gitignore changed to reflect new
workspacebase directory, please check your local .gitignore for the diff. - makejdk-any-platform.1 man page updated to reflect new script usage.