From 23110808cf5059801f0e120d125546677e21c4c1 Mon Sep 17 00:00:00 2001 From: Ed Merks Date: Mon, 11 Mar 2024 14:37:55 +0100 Subject: [PATCH] Update the updater for 2024-03 to 2024-06 transition --- nextReleaseUtils/update_build_configuration.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/nextReleaseUtils/update_build_configuration.sh b/nextReleaseUtils/update_build_configuration.sh index 24ca8e6..19e160f 100755 --- a/nextReleaseUtils/update_build_configuration.sh +++ b/nextReleaseUtils/update_build_configuration.sh @@ -23,7 +23,7 @@ script_name="$(basename "${0}")" xmlstarlet_bin="xmlstarlet" -path_to_simrel_build_repo="../../org.eclipse.simrel.build" +path_to_simrel_build_repo="../../simrel.build" jenkinsfile="Jenkinsfile" jenkinsfile_reporeports="Jenkinsfile-reporeports" @@ -39,9 +39,9 @@ eclipse_repo_base_url="https://download.eclipse.org/eclipse/updates" usage() { printf "Usage: %s release_name reference_repo eclipse_repo_url\n" "${script_name}" - printf "\t%-16s next release name (e.g. 2020-09).\n" "release_name" - printf "\t%-16s reference repo (e.g. 'releases/2020-06/202006171000').\n" "reference_repo" - printf "\t%-16s Eclipse repo URL (e.g. '4.16/R-4.16-202006040540/'), check https://download.eclipse.org/eclipse/updates.\n" "eclipse_repo_url" + printf "\t%-16s next release name (e.g. 2024-06).\n" "release_name" + printf "\t%-16s reference repo (e.g. 'releases/2024-03/202403131000').\n" "reference_repo" + printf "\t%-16s Eclipse repo URL (e.g. '4.31/R-4.31-202402290520'), check https://download.eclipse.org/eclipse/updates.\n" "eclipse_repo_url" } ## Verify inputs @@ -49,7 +49,7 @@ usage() { #TODO: check number of arguments if [ "${release_name}" == "" ]; then - printf "ERROR: a release name must be given (e.g. 2020-09).\n" + printf "ERROR: a release name must be given (e.g. 2024-03).\n" usage exit 1 fi @@ -61,7 +61,7 @@ if [ "${reference_repo}" == "" ]; then fi if [ "${eclipse_repo_url}" == "" ]; then - printf "ERROR: an Eclipse repo URL must be given (e.g. '4.16/R-4.16-202006040540/').\n" + printf "ERROR: an Eclipse repo URL must be given (e.g. '4.31/R-4.31-202402290520').\n" usage exit 1 fi @@ -86,4 +86,4 @@ git add "${jenkinsfile}" "${jenkinsfile_reporeports}" "${jenkinsfile_oomph_repor popd echo "Do not forget to commit the changes!" -echo "Commit message example: 'Update build configuration for next release cycle (2021-12)'" \ No newline at end of file +echo "Commit message example: 'Update build configuration for next release cycle (2024-06)'" \ No newline at end of file