2015-08-14 05:04:32 -04:00
# Licensed to Elasticsearch under one or more contributor
# license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright
# ownership. Elasticsearch licenses this file to you under
# the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on
# an 'AS IS' BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
# either express or implied. See the License for the specific
# language governing permissions and limitations under the License.
# Prepare a release
#
2015-08-14 09:55:44 -04:00
# 1. Update the Version.java to remove the snapshot bit
# 2. Remove the -SNAPSHOT suffix in all pom.xml files
2015-08-14 05:04:32 -04:00
#
# USAGE:
#
# python3 ./dev-tools/prepare-release.py
#
# Note: Ensure the script is run from the root directory
#
import fnmatch
import subprocess
import tempfile
import re
import os
import shutil
VERSION_FILE = ' core/src/main/java/org/elasticsearch/Version.java '
POM_FILE = ' pom.xml '
def run ( command ) :
if os . system ( ' %s ' % ( command ) ) :
raise RuntimeError ( ' FAILED: %s ' % ( command ) )
def ensure_checkout_is_clean ( ) :
# Make sure no local mods:
s = subprocess . check_output ( ' git diff --shortstat ' , shell = True )
if len ( s ) > 0 :
raise RuntimeError ( ' git diff --shortstat is non-empty: got: \n %s ' % s )
# Make sure no untracked files:
s = subprocess . check_output ( ' git status ' , shell = True ) . decode ( ' utf-8 ' , errors = ' replace ' )
if ' Untracked files: ' in s :
raise RuntimeError ( ' git status shows untracked files: got: \n %s ' % s )
# Make sure we have all changes from origin:
if ' is behind ' in s :
raise RuntimeError ( ' git status shows not all changes pulled from origin; try running " git pull origin " in this branch: got: \n %s ' % ( s ) )
# Make sure we no local unpushed changes (this is supposed to be a clean area):
if ' is ahead ' in s :
raise RuntimeError ( ' git status shows local commits; try running " git fetch origin " , " git checkout " , " git reset --hard origin/ " in this branch: got: \n %s ' % ( s ) )
# Reads the given file and applies the
# callback to it. If the callback changed
# a line the given file is replaced with
# the modified input.
def process_file ( file_path , line_callback ) :
fh , abs_path = tempfile . mkstemp ( )
modified = False
with open ( abs_path , ' w ' , encoding = ' utf-8 ' ) as new_file :
with open ( file_path , encoding = ' utf-8 ' ) as old_file :
for line in old_file :
new_line = line_callback ( line )
modified = modified or ( new_line != line )
new_file . write ( new_line )
os . close ( fh )
if modified :
#Remove original file
os . remove ( file_path )
#Move new file
shutil . move ( abs_path , file_path )
return True
else :
# nothing to do - just remove the tmp file
os . remove ( abs_path )
return False
# Moves the Version.java file from a snapshot to a release
def remove_version_snapshot ( version_file , release ) :
# 1.0.0.Beta1 -> 1_0_0_Beta1
release = release . replace ( ' . ' , ' _ ' )
release = release . replace ( ' - ' , ' _ ' )
pattern = ' new Version(V_ %s _ID, true ' % ( release )
replacement = ' new Version(V_ %s _ID, false ' % ( release )
def callback ( line ) :
return line . replace ( pattern , replacement )
processed = process_file ( version_file , callback )
if not processed :
raise RuntimeError ( ' failed to remove snapshot version for %s ' % ( release ) )
# Checks the pom.xml for the release version.
# This method fails if the pom file has no SNAPSHOT version set ie.
# if the version is already on a release version we fail.
# Returns the next version string ie. 0.90.7
def find_release_version ( ) :
with open ( ' pom.xml ' , encoding = ' utf-8 ' ) as file :
for line in file :
match = re . search ( r ' <version>(.+)-SNAPSHOT</version> ' , line )
if match :
return match . group ( 1 )
raise RuntimeError ( ' Could not find release version in branch ' )
if __name__ == " __main__ " :
release_version = find_release_version ( )
print ( ' *** Preparing release version: [ %s ] ' % release_version )
ensure_checkout_is_clean ( )
2015-08-17 10:32:45 -04:00
run ( ' cd dev-tools && mvn versions:set -DnewVersion= %s -DgenerateBackupPoms=false ' % ( release_version ) )
run ( ' cd rest-api-spec && mvn versions:set -DnewVersion= %s -DgenerateBackupPoms=false ' % ( release_version ) )
2015-08-17 03:14:20 -04:00
run ( ' mvn versions:set -DnewVersion= %s -DgenerateBackupPoms=false ' % ( release_version ) )
2015-08-14 05:04:32 -04:00
remove_version_snapshot ( VERSION_FILE , release_version )
2015-08-14 09:55:44 -04:00
print ( ' *** Done removing snapshot version. DO NOT COMMIT THIS, WHEN CREATING A RELEASE CANDIDATE. ' )
2015-08-14 05:04:32 -04:00
2015-08-17 05:43:47 -04:00
shortHash = subprocess . check_output ( ' git log --pretty=format: " % h " -n 1 ' , shell = True ) . decode ( ' utf-8 ' )
2015-08-17 09:52:36 -04:00
localRepo = ' /tmp/elasticsearch- %s - %s ' % ( release_version , shortHash )
2015-08-17 05:43:47 -04:00
localRepoElasticsearch = localRepo + ' /org/elasticsearch '
2015-08-14 09:55:44 -04:00
print ( ' ' )
print ( ' *** To create a release candidate run: ' )
2015-08-17 05:43:47 -04:00
print ( ' mvn clean install deploy -Prelease -DskipTests -Dgpg.keyname= " D88E42B4 " -Dpackaging.rpm.rpmbuild=/usr/bin/rpmbuild -Drpm.sign=true -Dmaven.repo.local= %s -Dno.commit.pattern= " \\ bno(n|)commit \\ b " -Dforbidden.test.signatures= " " ' % ( localRepo ) )
print ( ' 1. Remove all _remote.repositories: find %s -name _remote.repositories -exec rm {} \ ; ' % ( localRepoElasticsearch ) )
print ( ' 2. Rename all maven metadata files: for i in $(find %s -name " maven-metadata-local.xml* " ) ; do mv " $i " " $ { i/-local/} " ; done ' % ( localRepoElasticsearch ) )
print ( ' 3. Sync %s into S3 bucket ' % ( localRepoElasticsearch ) )
2015-08-17 10:32:45 -04:00
print ( ' s3cmd sync %s s3://download.elasticsearch.org/elasticsearch/staging/elasticsearch- %s - %s /maven/org/ ' % ( localRepoElasticsearch , release_version , shortHash ) )
2015-08-17 05:43:47 -04:00
print ( ' 4. Create repositories: ' )
print ( ' export S3_BUCKET_SYNC_TO= " download.elasticsearch.org/elasticsearch/staging/elasticsearch- %s - %s /repos " ' % ( release_version , shortHash ) )
print ( ' export S3_BUCKET_SYNC_FROM= " $S3_BUCKET_SYNC_TO " ' )
print ( ' dev-tools/build_repositories.sh %s ' % ( release_version ) )
print ( ' ' )
print ( ' NOTE: the above mvn command will promt you several times for the GPG passphrase of the key you specified you can alternatively pass it via -Dgpg.passphrase=yourPassPhrase ' )
2015-08-17 10:32:45 -04:00
print ( ' NOTE: Running s3cmd might require you to create a config file with your credentials, if the s3cmd does not support suppliying them via the command line! ' )