File tree 2 files changed +6
-9
lines changed
2 files changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -20,11 +20,8 @@ while getopts "bustefcdp" OPTION; do
20
20
f)
21
21
./bin/php-cs-fixer fix
22
22
;;
23
- t)
24
- ./bin/run-fun-test.sh " $2 "
25
- ;;
26
23
c)
27
- docker-compose run -e CHANGELOG_GITHUB_TOKEN=${CHANGELOG_GITHUB_TOKEN:- " " } --workdir=" /mqdev" --rm generate-changelog github_changelog_generator --future-release " $2 " --simple-list
24
+ docker-compose run -e CHANGELOG_GITHUB_TOKEN=${CHANGELOG_GITHUB_TOKEN:- " " } --workdir=" /mqdev" --rm generate-changelog github_changelog_generator --release-branch= " $3 " -- future-release " $2 " --simple-list
28
25
;;
29
26
30
27
d) docker-compose run --workdir=" /mqdev" --rm dev php pkg/enqueue-bundle/Tests/Functional/app/console.php config:dump-reference enqueue -vvv
Original file line number Diff line number Diff line change 8
8
exit 1
9
9
fi
10
10
11
- ./bin/dev -c $1 && git add CHANGELOG.md && git commit -m " Release $1 " -S && git push origin master
11
+ CURRENT_BRANCH= ` git rev-parse --abbrev-ref HEAD `
12
12
13
- ./bin/subtree-split
13
+ ./bin/dev -c $1 " $CURRENT_BRANCH " && git add CHANGELOG.md && git commit -m " Release $1 " -S && git push origin " $CURRENT_BRANCH "
14
14
15
- CURRENT_BRANCH= ` git rev-parse --abbrev-ref HEAD `
15
+ ./bin/subtree-split
16
16
17
17
for REMOTE in origin stomp amqp-ext amqp-lib amqp-bunny amqp-tools pheanstalk gearman sqs gps fs redis dbal null rdkafka enqueue simple-client enqueue-bundle job-queue test async-event-dispatcher mongodb
18
18
do
28
28
29
29
(
30
30
cd $TMP_DIR ;
31
- git clone $REMOTE_URL . --depth=200
32
- git checkout $CURRENT_BRANCH ;
31
+ git clone $REMOTE_URL .
32
+ git checkout " $CURRENT_BRANCH " ;
33
33
# gsort comes with coreutils packages. brew install coreutils
34
34
LAST_RELEASE=$( git tag -l [0-9].* | gsort -V | tail -n1 )
35
35
if [[ -z " $LAST_RELEASE " ]]; then
You can’t perform that action at this time.
0 commit comments