Fix groups project check failure
Check jobs failed due wrong drush make execution. This fix now build up drupal distribution from installation profile and contrib module parts instead of directly checking out the code from git repository HEAD. Change-Id: I77d053ac7b8778d7f0abc0cbe6b4a5ce62affd63 Closes-Bug: #1331109
This commit is contained in:
parent
80783b9e28
commit
8be61a163c
@ -11,7 +11,8 @@
|
||||
mkdir drush
|
||||
curl -L https://github.com/drush-ops/drush/archive/6.0.0.tar.gz | tar -xz -C drush --strip 1
|
||||
# build distribution
|
||||
./drush/drush make build-groups.make dist
|
||||
export PATH=./drush:$PATH
|
||||
sh scripts/dev-build.sh
|
||||
publishers:
|
||||
- console-log
|
||||
- coverage-log
|
||||
@ -41,12 +42,13 @@
|
||||
mkdir drush
|
||||
curl -L https://github.com/drush-ops/drush/archive/6.0.0.tar.gz | tar -xz -C drush --strip 1
|
||||
# build distribution
|
||||
./drush/drush make build-groups.make dist
|
||||
export PATH=./drush:$PATH
|
||||
sh scripts/dev-build.sh
|
||||
# Clean/create a tarball directory
|
||||
rm -rf tarballs
|
||||
mkdir -p tarballs
|
||||
# Create an archive tarball.
|
||||
tar -czf groups-$PROJECT_VER.tar.gz dist/
|
||||
tar -czf groups-$PROJECT_VER.tar.gz publish/
|
||||
cp groups-$PROJECT_VER.tar.gz tarballs/groups-latest.tar.gz
|
||||
mv groups-$PROJECT_VER.tar.gz tarballs/
|
||||
# generate md5 checksums
|
||||
|
Loading…
Reference in New Issue
Block a user