All Versions
3
Latest Version
Avg Release Cycle
68 days
Latest Release
2039 days ago

Changelog History

  • v2.0.0 Changes

    September 26, 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.

    πŸ— 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.

    1. sbin/prepareWorkspace.sh added
    2. sbin/colour-codes.sh removed to simplify code πŸ‘‰ 1. makejdk.sh removed - please use makejdk-any-platform.sh or (rarely) πŸ— sbin/build.sh instead.
    3. sbin/common-functions.sh removed and its logic split
    4. sbin/common/common.sh added
    5. sbin/common/config_init.sh added
    6. 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.
    7. 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).

    1. --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).
    2. -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.
    3. -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.
    4. -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.
    5. -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).
    6. -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.
    7. -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

    1. sbin/jtreg.sh removed (superseded by the openjdk-tests project).
    2. 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

    1. 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.
    2. .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.
  • v1.0.1 Changes

    September 26, 2018

    πŸ— Last release of the master branch before new_build_scripts was merged in

  • v1.0.0 Changes

    May 14, 2018

    πŸ— See Commit History up until May the 14th 2018.