Remove unused views
[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 # Convert stream to numeric ODL major version
18 if [ "$STREAM" == "oxygen" ]; then
19   VERSION_MAJOR=8
20 elif [ "$STREAM" == "fluorine" ]; then
21   VERSION_MAJOR=9
22 elif [ "$STREAM" == "neon" ]; then
23   VERSION_MAJOR=10
24 else
25   echo "Unable to convert stream to major version"
26   exit 1
27 fi
28
29 # Build the latest snapshot matching the given major minor version
30 "$WORKSPACE/packaging/packages/build.py" --rpm \
31                                          --changelog_name "$CHANGELOG_NAME" \
32                                          --changelog_email "$CHANGELOG_EMAIL" \
33                                          latest_snap \
34                                          --major "$VERSION_MAJOR"