[ansible][fedora] Update package name
[barometer.git] / src / collectd / collectd_apply_pull_request.sh
1 #! /bin/bash
2 # Copyright 2019-2021 Intel Corporation, Anuket and others.
3 # All rights reserved.
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 #
17
18 # This files contains list of pull requests to be applied on top
19 # of main branch before building collectd included in docker
20 # collectd-experimental container
21
22 # Use this script with a COLLECTD_PULL_REQUESTS variable defined
23 # for example:
24 # COLLECTD_PULL_REQUESTS="3027,3028" ./collectd_apply_pull_request.sh
25
26 if [ -z "$COLLECTD_PULL_REQUESTS" ];
27 then
28         echo "COLLECTD_PULL_REQUESTS is unset, exiting"
29         exit
30 fi
31
32 IFS=', ' read -a PULL_REQUESTS <<< "$COLLECTD_PULL_REQUESTS"
33
34 # during rebasing/merging git requires email & name to be set
35 git config user.email "barometer-experimental@container"
36 git config user.name "BarometerExperimental"
37
38 # If there's a single PR listed, just check it out
39 if [ "${#PULL_REQUESTS[@]}" -eq "1" ];
40 then
41         echo "Checking out pull request $COLLECTD_PULL_REQUESTS"
42         git fetch origin pull/$COLLECTD_PULL_REQUESTS/head && git checkout FETCH_HEAD
43 else
44 # if there are multiple PRs, rebase them on top of the checked out branch
45         for PR_ID in "${PULL_REQUESTS[@]}"
46         do
47                 echo "Applying pull request $PR_ID"
48                 git pull --rebase origin pull/$PR_ID/head
49         done
50 fi