Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d86a30c4ce027d0a57b8211fa4a0a8f6be819b14 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
#!/usr/bin/env bash
#*******************************************************************************
# Copyright (c) 2016 IBM Corporation and others.
#
# This program and the accompanying materials
# are made available under the terms of the Eclipse Public License 2.0
# which accompanies this distribution, and is available at
# https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
#
# Contributors:
#     David Williams - initial API and implementation
#*******************************************************************************

DROP_ID=$1
DL_LABEL=$2
HIDE_SITE=$3

function usage ()
{
  printf "\n\tUsage: %s DROP_ID DL_LABEL HIDE_SITE" $(basename $0) >&2
  printf "\n\t\t%s\t%s" "DROP_ID " "such as I20121031-2000." >&2
  printf "\n\t\t%s\t%s" "DL_LABEL " "such as 4.4M3." >&2
  printf "\n\t\t%s\t%s" "HIDE_SITE " "true or false." >&2
}

if [[ -z "${DROP_ID}" || -z "${DL_LABEL}" || -z "${HIDE_SITE}" ]]
then
  printf "\n\n\t%s\n\n" "ERROR: arguments missing in call to $( basename $0 )" >&2
  usage
  exit 1
fi

DL_DROP_ID=${DL_TYPE}-${DL_LABEL}-${BUILD_TIMESTAMP}

cd ${BUILDMACHINE_BASE_DL}


if [[ ! "${INDEX_ONLY}" == "true" ]]
then
  printf "\n\n\t%s\n" "Promoting Eclipse site."
else
  printf "\n\n\t%s\n" "Promoting Eclipse Index site."
fi

if [[ ! "${INDEX_ONLY}" == "true" ]]
then
  printf "\n\t%s\n\t%s to \n\t%s\n" "Making backup copy of original ..." "$DROP_ID" "${DROP_ID}ORIG"
  if [[ -e  ${DROP_ID} ]]
  then
    rsync -r ${DROP_ID}/ ${DROP_ID}ORIG
  else
    echo -e "\n\tERROR: the directory ${DROP_ID} does not exist\n"
    exit 1
  fi
  printf "\n\t%s\n" "Doing rename of original."

  # if DL_DROP_ID already exists, it is from a previous run we are re-doing, do,
  # we'll remove first, to make sure it's cleaning re-done.
  if [[ -d ${DL_DROP_ID} ]]
  then
    echo -e "\n\tWARNING: found and will remove existing, previous, version of ${DL_DROP_ID}"
    rm -fr ${DL_DROP_ID}
    RC=$?
    if [[ $RC != 0 ]]
    then
      echo -e "\n\tERROR: Could not remove previous (failed) version of DL_DROP_ID, ${DL_DROP_ID}"
      exit 1
    fi
  fi
else
  # just copy over what's there.
  # TODO: earlier, we could check to be sure the directory we expect really does exist.
  printf "\n\t%s\n" "Making copy (update) of original on top of previous renamed version. "
  if [[ -e  ${DROP_ID} ]]
  then
    rsync -ru ${DROP_ID}/ ${DL_DROP_ID}/
  else
    echo -e "\n\tERROR: the directory ${DROP_ID} does not exist\n"
    exit 1
  fi
fi

if [[ ! "${INDEX_ONLY}" == "true" ]]
then
  # rename old dir to new dir
  ${PROMOTE_IMPL}/renameBuild.sh ${DROP_ID} ${BUILD_LABEL} ${DL_DROP_ID} ${DL_LABEL}
  RC=$?
  if [[ $RC != 0 ]] 
  then 
    echo "ERROR: renameBuild.sh returned non-zero return code: $RC."
    exit $RC
  fi
else
  # If indexing only, we still need to run "renamed" just to pick up "renames" in test results., but in "new" directory
  ${PROMOTE_IMPL}/renameBuild.sh ${DROP_ID} ${BUILD_LABEL} ${DL_DROP_ID} ${DL_LABEL} ${DL_DROP_ID}
  RC=$?
  if [[ $RC != 0 ]] 
  then 
    echo "ERROR: renameBuild.sh returned non-zero return code: $RC."
    exit $RC
  fi
fi

if [[ ! "${INDEX_ONLY}" == "true" ]]
then
  printf "\n\t%s\n" "Moving backup copy back to original, since INDEX_ONLY was not defined."
  mv ${DROP_ID}ORIG ${DROP_ID}
else
  printf "\n\t%s\n" "Nothing to move back to original, since never copied to ORIG, since INDEX_ONLY was ${INDEX_ONLY}"
fi

# If doing a "re-indexing" run, then build may be hidden still, or may not be.
# we make no assumptions and just leave it alone, if re-indexing. build hidden is
# created then first promoted, and soing teh "deferred steps" it the only hting that
# removes (renames) it).
if [[ "${INDEX_ONLY}" == "true" ]]
then
  printf "\tLeaving 'buildHidden' however it was, not changing it, since this is a re-index job only."
else
  # keep hidden, initially, both to confirm all is correct,
  # and in theory could wait a bit to get a mirror or two
  # (in some cases).
  if [[ "${HIDE_SITE}" == "true" ]]
  then
    touch ${DL_DROP_ID}/buildHidden
    if [[ $? != 0 ]]
    then
      echo "touch failed. Exiting."
      exit 1
    fi
    echo "Remember to remove 'buildHidden' file, and re-run updateIndexes.sh since HIDE_SITE was ${HIDE_SITE}." >> "${CL_SITE}/checklist.txt"
  else
    echo "HIDE_SITE value was ${HIDE_SITE}"
    if [[ -e ${DL_DROP_ID}/buildHidden ]]
    then
      mv ${DL_DROP_ID}/buildHidden ${DL_DROP_ID}/buildHiddenFOUND
      echo "Found existing 'buildHidden' file, and renamed it to 'buildHiddenFOUND' since 'HIDE_SITE' was ${HIDE_SITE}"
    fi
  fi
fi

if [[ "${DL_TYPE}" =~ [SR] ]]
then
  # as a matter of routine, turn "test color" to green, if not already
  touch ${DL_DROP_ID}/overrideTestColor
  # and turn on "news flag"
  touch ${DL_DROP_ID}/news
fi

# for M-Builds that are RCs (Release Candidates) also override test color, 
# but no 'news' until Release
if [[ "${DL_TYPE}" =~ [M] && "${DL_LABEL}" =~ .*RC.* ]]
then
  # as a matter of routine, turn "test color" to green, if not already
  touch ${DL_DROP_ID}/overrideTestColor
fi

printf "\n\t%s\n" "rsync to downloads."
if [[ "${INDEX_ONLY}" == "true" ]]
then
  printf "\n\t%s\n" "Will do --update only, since updating index."
  UPDATE_ARG="--update"
else
  UPDATE_ARE=
fi

# Here we can rsync with committer id. For Equinox, we have to create a promotion file.
rsync ${UPDATE_ARG} --recursive --prune-empty-dirs --exclude="*apitoolingreference/*" --exclude="*org.eclipse.releng.basebuilder/*" --exclude="*eclipse.platform.releng.aggregator/*" --exclude="*repository/*" --exclude="*workspace-*/*" ${DL_DROP_ID} /home/data/httpd/download.eclipse.org/eclipse/downloads/drops4/
rccode=$?
if [ $rccode -eq 0 ]
then
  if [[ "${HIDE_SITE}" != "true" ]]
  then
    printf "\n\t%s\n" "Update main overall download index page so it shows new build."
    source ${UTILITIES_HOME}/sdk/updateIndexFilesFunction.shsource
    updateIndex
  fi
else
  printf "\n\n\t%s\n\n" "ERROR: rsync failed. rccode: $rccode" >&2
  exit $rccode
fi

Back to the top