[docker] Reduce the number of build steps in containers
[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 for PR_ID in "${PULL_REQUESTS[@]}"
39 do
40     echo "Applying pull request $PR_ID"
41     git pull --rebase origin pull/$PR_ID/head
42 done