summaryrefslogtreecommitdiffstats
path: root/rtems-release-cron
blob: 67b9054f51a75944144acb6c0ee86f9e9f75a3b0 (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
# RTEMS Tools Project (http://www.rtems.org/)
# Copyright 2019 Chris Johns (chrisj@rtems.org)
# All rights reserved.
#
# This file is part of the RTEMS Tools package in 'rtems-tools'.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#

set -e

#
# Cron wrapper for releasing each month.
#

live=yes
if [ "${RTEMS_RELEASE_TESTING}" = "yes" ]; then
 live=no
fi

#
# RTEMS release
#
rtems_major=5
rtems_minor=0
rtems_dot=0
rtems_snapshot=$(date +"m%y%m")

#
# Email addresses
#
from="chrisj@rtems.org"

#
# If not live use dummy addresses.
#
if [ ${live} = yes ]; then
 build_to="build@rtems.org"
 announce_to="users@rtems.org,devel@rtems.org"
else
 build_to="chrisj@rtems.org"
 announce_to="chrisj@rtems.org"
fi

#
# Supported SMTP hosts.
#
case $(hostname) in
 sync.rtems.org)
  smtphost="--smtp-host=192.168.80.141"
  ;;
 *)
  ;;
esac

#
# Announce template
#
announce="snapshot-announce.txt"

#
# Upload path
#
if [ ${live} = yes ]; then
 upload_path="/data/ftp/pub/rtems/releases"
else
 upload_path="/data/ftp/pub/rtems/people/chrisj/releases"
fi

#
# The version and the revision
#
version=${rtems_major}
revision=${rtems_minor}.${rtems_dot}
snapshot=${revision}-${rtems_snapshot}
release="${version}.${snapshot}"

#
# Work in the release sandbox
#
release_top=$(dirname $0)
cd ${release_top}

#
# Activate the virtualenv for building the documentation.
#
. ../release/bin/activate

#
# Clean the work
#
rm -rf ${release}

. ${release_top}/rtems-release-version

git_hash=$(git log --pretty=format:'%h' -n 1)

#
# Build log
#
BUILD_LOG=rtems-release-build-log-${rtems_snapshot}.txt

#
# The lock file, used to stop cron running this script on top of itself.
#
LOCK=.cron-lock-rtems-release

#
# Clean up file list.
#
CLEANUP_FILES="${LOCK} ${BUILD_LOG} ${announce} ARCH-BSP.txt"

if [ ! -f ${LOCK} ]; then
 trap "rm -f ${CLEANUP_FILES}" EXIT
 trap "rm -f ${CLEANUP_FILES}; exit 1" INT TERM STOP INFO USR1 USR2
 touch ${LOCK}
 echo "RTEMS Release Cron builder, v${rtems_release_version} (${git_hash})" > ${BUILD_LOG}
 echo "" >> ${BUILD_LOG}
 set +e
 ./rtems-release ${version} ${snapshot} >> ${BUILD_LOG} 2>&1
 ec=$?
 ec=0
 set -e
 if [ $ec -eq 0 ]; then
  result="PASS"
 else
  result="FAIL"
 fi
 subject="RTEMS Release Snapshot Build: ${release} - ${result}"
 ${release_top}/rtems-mailer --to=${build_to} \
                             --from=${from} \
                             --subject="${subject}" \
                             ${smtphost} \
                             ${BUILD_LOG}
 if [ $ec -eq 0 ]; then
  if [ -d ${upload_path} ]; then
   destdir=${upload_path}/${rtems_major}/${rtems_major}.${revision}
   mkdir -p ${destdir}
   cp -r ${release} ${destdir}/
   cat ${announce}.in | \
       sed -e "s/@VERSION@/${version}/g" \
	   -e "s/@REVISION@/${revision}/g" \
	   -e "s/@SNAPSHOT@/${snapshot}/g" \
	   -e "s/@RTEMS_SNAPSHOT@/${rtems_snapshot}/g" \
	   -e "s/@RELEASE@/${release}/g" > ${announce}
   now=$(date +"%d %b %Y")
   subject="RTEMS Release Snapshot: ${release} (${now})"
   ${release_top}/rtems-mailer --to=${announce_to} \
                               --from=${from} \
                               --subject="${subject}" \
                               ${smtphost} \
                               ${announce}
  fi
 fi
fi

exit 0