File tree 5 files changed +16
-28
lines changed
5 files changed +16
-28
lines changed Original file line number Diff line number Diff line change @@ -25,3 +25,5 @@ deploy:
25
25
key : ' $BINTRAY_API_KEY'
26
26
file : ./bintray.json
27
27
skip_cleanup : true
28
+ on :
29
+ all_branches : true
Original file line number Diff line number Diff line change @@ -55,10 +55,10 @@ Check out the bump branch and run the `build-binaries` script
55
55
56
56
When prompted build the non-linux binaries and test them.
57
57
58
- 1 . Build the Mac binary in a Mountain Lion VM:
58
+ 1 . Download the osx binary from Bintray. Make sure that the latest build has
59
+ finished, otherwise you'll be downloading an old binary.
59
60
60
- script/setup/osx
61
- script/build/osx
61
+ https://dl.bintray.com/docker-compose/$BRANCH_NAME/
62
62
63
63
2 . Download the windows binary from AppVeyor
64
64
Original file line number Diff line number Diff line change @@ -23,15 +23,15 @@ REPO=docker/compose
23
23
# Build the binaries
24
24
script/clean
25
25
script/build/linux
26
- # TODO: build osx binary
27
- # script/setup/osx
28
- # script/build/osx
29
- # TODO: build or fetch the windows binary
30
- echo " You need to build the osx/windows binaries, that step is not automated yet."
31
26
32
27
echo " Building the container distribution"
33
28
script/build/image $VERSION
34
29
35
30
echo " Create a github release"
36
31
# TODO: script more of this https://developer.github.com/v3/repos/releases/
37
32
browser https://github.com/$REPO /releases/new
33
+
34
+ echo " Don't forget to download the osx and windows binaries from appveyor/bintray\!"
35
+ echo " https://dl.bintray.com/docker-compose/$BRANCH /"
36
+ echo " https://ci.appveyor.com/project/docker/compose"
37
+ echo
Original file line number Diff line number Diff line change @@ -82,20 +82,6 @@ $SHELL || true
82
82
git commit -a -m " Bump $VERSION " --signoff --no-verify
83
83
84
84
85
- echo " Push branch to user remote"
86
- GITHUB_USER=$USER
87
- USER_REMOTE=" $( find_remote $GITHUB_USER /compose) "
88
- if [ -z " $USER_REMOTE " ]; then
89
- echo " $GITHUB_USER /compose not found"
90
- read -r -p " Enter the name of your GitHub fork (username/repo): " GITHUB_REPO
91
- # assumes there is already a user remote somewhere
92
- USER_REMOTE=$( find_remote $GITHUB_REPO )
93
- fi
94
- if [ -z " $USER_REMOTE " ]; then
95
- >&2 echo " No user remote found. You need to 'git push' your branch."
96
- exit 2
97
- fi
98
-
99
-
100
- git push $USER_REMOTE
101
- browser https://github.com/$REPO /compare/docker:release...$GITHUB_USER :$BRANCH ? expand=1
85
+ echo " Push branch to docker remote"
86
+ git push $REMOTE
87
+ browser https://github.com/$REPO /compare/docker:release...$BRANCH ? expand=1
Original file line number Diff line number Diff line change 1
1
{
2
2
"package": {
3
3
"name": "${TRAVIS_OS_NAME}",
4
- "repo": "master ",
4
+ "repo": "${TRAVIS_BRANCH} ",
5
5
"subject": "docker-compose",
6
6
"desc": "Automated build of master branch from travis ci.",
7
7
"website_url": "https://github.com/docker/compose",
11
11
},
12
12
13
13
"version": {
14
- "name": "master ",
15
- "desc": "Automated build of the master branch.",
14
+ "name": "${TRAVIS_BRANCH} ",
15
+ "desc": "Automated build of the ${TRAVIS_BRANCH} branch.",
16
16
"released": "${DATE}",
17
17
"vcs_tag": "master"
18
18
},
You can’t perform that action at this time.
0 commit comments