Remove traces of Boron logic
[releng/builder.git] / jjb / packaging / build-rpm-snap.sh
1 #!/bin/bash
2
3 # Options:
4 #   -x: Echo commands
5 #   -e: Fail on errors
6 #   -o pipefail: Fail on errors in scripts this calls, give stacktrace
7 set -ex -o pipefail
8
9 # Install required packages
10 virtualenv rpm_build
11 # shellcheck disable=SC1091
12 source rpm_build/bin/activate
13 PYTHON="rpm_build/bin/python"
14 $PYTHON -m pip install --upgrade pip
15 $PYTHON -m pip install -r "$WORKSPACE/packaging/packages/requirements.txt"
16
17 # Extract stream from job name (format: foo-job-name-<stream>)
18 # shellcheck disable=SC1083
19 STREAM=${{JOB_NAME##*-}}
20
21 # Convert stream to numeric ODL major version
22 if [ "$STREAM" == "carbon" ]; then
23   VERSION_MAJOR=6
24 elif [ "$STREAM" == "nitrogen" ]; then
25   VERSION_MAJOR=7
26 elif [ "$STREAM" == "oxygen" ]; then
27   VERSION_MAJOR=8
28 else
29   echo "Unable to convert stream to major version"
30   exit 1
31 fi
32
33 # Build the latest snapshot matching the given major minor version
34 "$WORKSPACE/packaging/packages/build.py" --rpm \
35                                          --changelog_name "$CHANGELOG_NAME" \
36                                          --changelog_email "$CHANGELOG_EMAIL" \
37                                          latest_snap \
38                                          --major "$VERSION_MAJOR"
39
40 # Publish RPMs to Nexus if in production Jenkins, else host on sandbox Jenkins
41 if [ "$SILO" == "sandbox" ]; then
42   # TODO: Host RPMs on Jenkins temporarily
43   echo "Not uploading RPMs to Nexus because running in sandbox"
44 elif  [ "$SILO" == "releng" ]; then
45   # Move RPMs (SRPM and noarch) to dir of files that will be uploaded to Nexus
46   UPLOAD_FILES_PATH="$WORKSPACE/upload_files"
47   mkdir -p "$UPLOAD_FILES_PATH"
48   mv "/home/$USER/rpmbuild/RPMS/noarch/"*.rpm "$_"
49   mv "/home/$USER/rpmbuild/SRPMS/"*.rpm "$_"
50 else
51   echo "Unknown Jenkins silo: $SILO"
52   exit 1
53 fi