Project

General

Profile

HOWTO backport commits » History » Version 18

Loïc Dachary, 05/22/2015 09:51 AM

1 1 Loïc Dachary
h3. Backport issues
2
3 18 Loïc Dachary
* Pick one entry with the highest *Priority* field in the list of backports linked from [[HOWTO|the top level page]] (for instance "hammer backports":http://tracker.ceph.com/projects/ceph/issues?query_id=78) 
4 7 Loïc Dachary
* git clone a fork of http://github.com/ceph/ceph
5 10 Loïc Dachary
* *git checkout -b wip-$issue-$release origin/$release* to create a branch with a name that reflects the issue being fixed and the target release: this naming is convenient to select all branches containing backports for firefly or select all branches containing backports for a specific issue
6 1 Loïc Dachary
* git cherry-pick -x the commits from the pull request that was targeting master (not from the pull requests targeting stable branches)
7 10 Loïc Dachary
* *git push origin wip-$issue-$release* to publish the branch on github and be able to create a pull request from it
8 16 Loïc Dachary
* generate a *$github_token* by "following the GitHub instructions":https://help.github.com/articles/creating-an-access-token-for-command-line-use/
9 14 Loïc Dachary
* retrieve the *$redmine_key*: it is a token that will allow you to script issue updates
10
** login http://tracker.ceph.com/
11
** visit http://tracker.ceph.com/my/account
12
** look for *API access key* in the page (Control-f)
13
** click on the *Show* link just under *API access key*
14
** copy the hexadecimal number it shows
15
** redmine_key=b586ce6a7a936e71f351c93ac0b65a588d4333
16 10 Loïc Dachary
* create a pull request from the *wip-$issue-$release* branch with the same title as the issue
17 7 Loïc Dachary
<pre>
18 10 Loïc Dachary
account=myaccount
19 7 Loïc Dachary
eval title=$(curl --silent 'http://tracker.ceph.com/issues/'$issue.json?key=$redmine_key | jq .issue.subject) ; echo $title
20 10 Loïc Dachary
number=$(curl --silent --data-binary '{"title":"'"$title"'","head":"'$account':wip-'$issue-$release'","base":"'$release'","body":"http://tracker.ceph.com/issues/'$issue'"}' 'https://api.github.com/repos/ceph/ceph/pulls?access_token='$github_token | jq .number)
21
</pre>
22 13 Loïc Dachary
* assigned the pull request to yourself (because it needs to got through integration tests before it can be approved by the original author), add the relevant labels (rgw, core, bug fix, feature...) and set the milestone to $release (requires write permission to the ceph repository)
23 10 Loïc Dachary
<pre>
24
component=core ; curl --silent --data-binary '{"milestone":"'$release_number'","assignee":"'$account'","labels":["bug fix","'$component'"]}' 'https://api.github.com/repos/ceph/ceph/issues/'$number'?access_token='$github_token
25
</pre>
26
* wait for the make check bot to run the *run-make-check.sh* script on the branch that was pushed and verify it works
27 18 Loïc Dachary
* Set the issue description to only contain the URL to the pull request
28 10 Loïc Dachary
<pre>
29 18 Loïc Dachary
curl --verbose -X PUT --header 'Content-type: application/json' --data-binary '{"issue":{"description":"https://github.com/ceph/ceph/pull/'$number'"}}' 'http://tracker.ceph.com/issues/'$issue.json?key=$redmine_key
30 2 Loïc Dachary
</pre>
31
* if there is a conflict explain how it was resolved in the commit message, below the Conflicts line. For instance:
32
<pre>
33
commit c60da2f3c34e7325c748d2d6e55140a0a30013fd
34
Author: Samuel Just <sjust@redhat.com>
35
Date:   Thu Nov 20 15:15:08 2014 -0800
36 1 Loïc Dachary
37
    PGLog: include rollback_info_trimmed_to in (read|write)_log
38
    
39
    Fixes: #10157
40
    Backport: firefly, giant
41
    Signed-off-by: Samuel Just <sjust@redhat.com>
42
    (cherry picked from commit 1fe8b846641486cc294fe7e1d2450132c38d2dba)
43
    
44
    Conflicts:
45
    	src/osd/PGLog.cc
46
            in the context coll_t::META_COLL was replaced with META_COLL
47
</pre>
48
* The difference between the original commit and the one including a conflict resolution can be displayed with
49 11 Loïc Dachary
<pre>
50
commit=c7d0d51cb574594de6f09457c960347b11fc2474 ; picked_from=$(git show --no-patch --pretty=%b $commit  |  perl -ne 'print if(s/.*cherry picked from commit (\w+).*/$1/)') ; diff -u --ignore-matching-lines '^[^+-]' <(git show $picked_from) <(git show $commit)
51
</pre>
52 18 Loïc Dachary
* if the conflict is difficult to resolve, seek help from the author of the original commit (see "librbd: deadlock in image refresh":https://github.com/ceph/ceph/pull/4176 for instance) and assign the issue to her/him, or to a [[HOWTO#Leads|lead]]
53
* after the backport passed [[HOWTO run integration and upgrade tests|integration and upgrade tests]], ask for approval from [[HOWTO#Leads|lead]] of the corresponding component before merging it in the stable branch
54 1 Loïc Dachary
55 10 Loïc Dachary
All commits being backported must be cherry-picked from master. There are exceptions to this rule (see https://github.com/ceph/ceph/pull/4175 for instance: it fixes a regression introduced by an incorrect resolution of a backport) but they are rare. When a backport is done to fix a bug that shows in the integration tests or upgrade tests run by cron, testing the backport in an integration branch is redundant because the existing tests will keep failing.
56
57 17 Nathan Cutler
Here are the snippets above grouped together for easier copy/paste:
58 10 Loïc Dachary
<pre>
59
redmine_key=b586c588d4333
60
github_token=bc275830c635
61 12 Loïc Dachary
github_user=dachary
62 10 Loïc Dachary
issue=$1
63
# can't seem to extract the release number with the api
64
release=giant ; release_number=2
65 1 Loïc Dachary
release=firefly ; release_number=3
66
release=hammer ; release_number=5
67 12 Loïc Dachary
git checkout -f -b wip-$issue-$release ceph/$release
68
git cherry-pick -x .....
69 10 Loïc Dachary
git push loic wip-$issue-$release ; sleep 2 # let github catch up
70 1 Loïc Dachary
title=$(curl --silent 'http://tracker.ceph.com/issues/'$issue.json?key=$redmine_key | jq .issue.subject | tr -d '\\"')
71 17 Nathan Cutler
echo "Issue title: $title"
72
number=$(curl --silent --data-binary '{"title":"'"$title"'","head":"'$github_repo':wip-'$issue-$release'","base":"'$release'","body":"http://tracker.ceph.com/issues/'$issue'"}' 'https://api.github.com/repos/ceph/ceph/pulls?access_token='$github_token | jq .number)
73
echo "Opened pull request $number"
74 12 Loïc Dachary
component=core ; curl --silent --data-binary '{"milestone":"'$release_number'","assignee":"'$github_user'","labels":["bug fix","'$component'"]}' 'https://api.github.com/repos/ceph/ceph/issues/'$number'?access_token='$github_token
75 10 Loïc Dachary
firefox https://github.com/ceph/ceph/pull/$number
76 18 Loïc Dachary
curl --verbose -X PUT --header 'Content-type: application/json' --data-binary '{"issue":{"description":"https://github.com/ceph/ceph/pull/'$number'"}}' 'http://tracker.ceph.com/issues/'$issue.json?key=$redmine_key
77 10 Loïc Dachary
firefox http://tracker.ceph.com/issues/$issue
78
</pre>