Skip to content
This repository has been archived by the owner on Dec 3, 2023. It is now read-only.

Installs git subsplit before running split command #916

Merged
merged 2 commits into from
Jun 19, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,12 @@ after_script:
php coveralls.phar --verbose;
fi
# split monorepo to packages (done via Travis Cron Job)
- if [[ $TRAVIS_EVENT_TYPE = "cron" && $MONOREPO_SPLIT != "" ]]; then bin/subtree-split-last-tag.sh; fi
- |
if [[ $TRAVIS_EVENT_TYPE = "cron" && $MONOREPO_SPLIT != "" ]]; then
git clone https://github.com/dflydev/git-subsplit.git;
cd git-subsplit && ./install.sh && cd ..;
bin/subtree-split-last-tag.sh;
fi
- |
echo $TRAVIS_EVENT_TYPE
echo $MONOREPO_SPLIT
Expand Down