|
| 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