Skip to content

Commit be3c5a5

Browse files
committed
Instruction for building 1.7.21 release
(cherry picked from commit e02395f)
1 parent 80eb82a commit be3c5a5

File tree

3 files changed

+64
-2
lines changed

3 files changed

+64
-2
lines changed

docs/building/build-1.7.20.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ docker run --rm -it --name kotlin-build-$DEPLOY_VERSION \
4040

4141
This generates a ZIP file: `dist/kotlin-compiler-1.7.20.zip`.
4242

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.20/kotlin-compiler-1.7.20.zip): 5e3c8d0f965410ff12e90d6f8dc5df2fc09fd595a684d514616851ce7e94ae7d
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.20/kotlin-compiler-1.7.20.zip):
44+
5e3c8d0f965410ff12e90d6f8dc5df2fc09fd595a684d514616851ce7e94ae7d
4445

4546
## Build maven artifacts
4647

docs/building/build-1.7.21.md

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
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.

docs/building/index.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
# Kotlin builds
22

3-
* [1.7.20 Release](build-1.7.20.md)
3+
* [1.7.20 Release](build-1.7.20.md)
4+
* [1.7.21 Release](build-1.7.21.md)

0 commit comments

Comments
 (0)