Merge "Move dlux Sonar scan to Sonarcloud"
[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" == "sodium" ]; then
19   VERSION_MAJOR=11
20 elif [ "$STREAM" == "magnesium" ]; then
21   VERSION_MAJOR=12
22 elif [ "$STREAM" == "aluminium" ]; then
23   VERSION_MAJOR=13
24 elif [ "$STREAM" == "silicon" ]; then
25   VERSION_MAJOR=14
26 else
27   echo "Unable to convert stream to major version"
28   echo "MAINTAINER: Update if/else switch above with recent stream/ver pairs"
29   exit 1
30 fi
31
32 # Build the latest snapshot matching the given major minor version
33 "$WORKSPACE/packaging/packages/build.py" --rpm \
34                                          --changelog_name "$CHANGELOG_NAME" \
35                                          --changelog_email "$CHANGELOG_EMAIL" \
36                                          latest_snap \
37                                          --major "$VERSION_MAJOR"