Skip to content

Commit 41d16b1

Browse files
goodwinnkteamcity
authored and
teamcity
committed
Scripts for building Kotlin repository
1 parent 4b3dc00 commit 41d16b1

File tree

2 files changed

+78
-0
lines changed

2 files changed

+78
-0
lines changed

scripts/build-kotlin-compiler.sh

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#!/bin/bash
2+
3+
#
4+
# Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
5+
# Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
6+
#
7+
8+
# Script for building kotlin-compiler.zip from sources.
9+
# Run the script in the root Kotlin directory.
10+
11+
set -e
12+
13+
if [ $# -lt 2 ]; then
14+
echo "Not enough arguments provided. Usage: $0 DEPLOY_VERSION BUILD_NUMBER"
15+
exit 1
16+
fi
17+
18+
DEPLOY_VERSION=$1
19+
BUILD_NUMBER=$2
20+
21+
echo "DEPLOY_VERSION=$DEPLOY_VERSION"
22+
echo "BUILD_NUMBER=$BUILD_NUMBER"
23+
24+
# Build dist/kotlin-compiler.zip
25+
./gradlew -PdeployVersion=$DEPLOY_VERSION -Pbuild.number=$BUILD_NUMBER -Pteamcity=true zipCompiler -Dfile.encoding=UTF-8

scripts/build-kotlin-maven.sh

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
#!/bin/bash
2+
3+
#
4+
# Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
5+
# Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
6+
#
7+
8+
# Script for building reproducible-maven.zip from sources. This is a full set of artifacts published to maven central during
9+
# the Kotlin release process.
10+
11+
# Run the script in the root Kotlin directory.
12+
13+
set -e
14+
15+
if [ $# -lt 3 ]; then
16+
echo "Not enough arguments provided. Usage: $0 DEPLOY_VERSION BUILD_NUMBER KOTLIN_NATIVE_VERSION"
17+
exit 1
18+
fi
19+
20+
DEPLOY_VERSION=$1
21+
BUILD_NUMBER=$2
22+
KOTLIN_NATIVE_VERSION=$3
23+
24+
echo "DEPLOY_VERSION=$DEPLOY_VERSION"
25+
echo "BUILD_NUMBER=$BUILD_NUMBER"
26+
echo "KOTLIN_NATIVE_VERSION=$KOTLIN_NATIVE_VERSION"
27+
28+
# Update versions in pom.xml
29+
mvn -DnewVersion=$DEPLOY_VERSION -DgenerateBackupPoms=false -DprocessAllModules=true -f libraries/pom.xml versions:set
30+
31+
# Build part of kotlin and publish it to the local maven repository and to build/repo directory
32+
./gradlew \
33+
-PdeployVersion=$DEPLOY_VERSION \
34+
-Pbuild.number=$BUILD_NUMBER \
35+
-Pversions.kotlin-native=$KOTLIN_NATIVE_VERSION \
36+
-Pteamcity=true \
37+
publish
38+
39+
# Build maven part and publish it to the same build/repo
40+
mvn \
41+
-f libraries/pom.xml \
42+
clean deploy \
43+
-Ddeploy-url=file://$(pwd)/build/repo \
44+
-DskipTests
45+
46+
# Prepare for reproducibility check
47+
mkdir -p build/repo-reproducible
48+
cp -R build/repo/. build/repo-reproducible
49+
# maven-metadata contains lastUpdated section with the build time
50+
find build/repo-reproducible -name "maven-metadata.xml*" -exec rm -rf {} \;
51+
# Each file has own timestamp that would affect zip file hash if not aligned
52+
find build/repo-reproducible -exec touch -t "198001010000" {} \;
53+
cd build/repo-reproducible && zip -rX reproducible-maven-$DEPLOY_VERSION.zip . && cd -

0 commit comments

Comments
 (0)