|
| 1 | +# Building 1.7.21 |
| 2 | + |
| 3 | +This tutorial explains how to build release [1.7.21](https://github.com/JetBrains/kotlin/releases/tag/v1.7.21) locally. |
| 4 | + |
| 5 | +## Prerequisites |
| 6 | +You must have: |
| 7 | +* Linux or MacOS. |
| 8 | +* Docker installed. |
| 9 | +* 14 GB memory available and configured in Docker. |
| 10 | + |
| 11 | +## Set environment variables |
| 12 | + |
| 13 | +The following environment variables must be set: |
| 14 | + |
| 15 | +``` |
| 16 | +export DEPLOY_VERSION=1.7.21 |
| 17 | +export BUILD_NUMBER=1.7.21-release-272 |
| 18 | +export KOTLIN_NATIVE_VERSION=1.7.21 |
| 19 | +export DOCKER_CONTAINER_URL=kotlin.registry.jetbrains.space/p/kotlin/containers/kotlin-build-env:v5 |
| 20 | +``` |
| 21 | +## Clone Kotlin repository |
| 22 | + |
| 23 | +In a new folder, clone the release tag from the Kotlin repository, and change directory to the build folder: |
| 24 | + |
| 25 | +``` |
| 26 | +git clone --depth 1 --branch v$DEPLOY_VERSION https://github.com/JetBrains/kotlin.git kotlin-build-$DEPLOY_VERSION |
| 27 | +cd kotlin-build-$DEPLOY_VERSION |
| 28 | +``` |
| 29 | + |
| 30 | +## Build and verify the compiler |
| 31 | + |
| 32 | +Download and save [scripts/build-kotlin-compiler.sh](https://github.com/JetBrains/kotlin/blob/1.7.20/scripts/build-kotlin-compiler.sh) to |
| 33 | +the`scripts` folder in your repository, and then execute it in a docker container: |
| 34 | + |
| 35 | +``` |
| 36 | +docker run --rm -it --name kotlin-build-$DEPLOY_VERSION \ |
| 37 | + --workdir="/repo" --volume="$(pwd):/repo" $DOCKER_CONTAINER_URL \ |
| 38 | + /bin/bash -c "./scripts/build-kotlin-compiler.sh $DEPLOY_VERSION $BUILD_NUMBER" |
| 39 | +``` |
| 40 | + |
| 41 | +This generates a ZIP file: `dist/kotlin-compiler-1.7.21.zip`. |
| 42 | + |
| 43 | +Check that the SHA 256 checksum is the same as the ZIP file [published on GitHub](https://github.com/JetBrains/kotlin/releases/download/v1.7.21/kotlin-compiler-1.7.21.zip): |
| 44 | +8412b31b808755f0c0d336dbb8c8443fa239bf32ddb3cdb81b305b25f0ad279e |
| 45 | + |
| 46 | +## Build maven artifacts |
| 47 | + |
| 48 | +Download and save [scripts/build-kotlin-maven.sh](https://github.com/JetBrains/kotlin/blob/1.7.20/scripts/build-kotlin-maven.sh) to |
| 49 | +the `scripts` folder in your repository, and then execute it in a docker container: |
| 50 | + |
| 51 | +``` |
| 52 | +docker run --rm -it --name kotlin-build-$DEPLOY_VERSION \ |
| 53 | + --workdir="/repo" --volume="$(pwd):/repo" $DOCKER_CONTAINER_URL \ |
| 54 | + /bin/bash -c "./scripts/build-kotlin-maven.sh $DEPLOY_VERSION $BUILD_NUMBER $KOTLIN_NATIVE_VERSION" |
| 55 | +``` |
| 56 | + |
| 57 | +This generates a ZIP file: `build/repo-reproducible/reproducible-maven-1.7.21.zip`. |
| 58 | + |
| 59 | +**Note:** Instructions for checking reproducibility will be covered in the upcoming release. There are already many JAR files on Maven |
| 60 | +central that are reproducible with this tutorial. |
0 commit comments