-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
With Travis, we : * generate the documentation * copy the documentation to the eclipse help plugin * build the nightly update-site * build the nightly bundles * promote the nightly update-site, target platform and bundles under s3
- Loading branch information
Showing
5 changed files
with
72 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#! /usr/bin/env sh | ||
set -e | ||
set -x | ||
UPDATE_SITE_DIR=packaging/org.obeonetwork.dsl.uml2.update/target/ | ||
TP=releng/org.obeonetwork.dsl.uml2.target/*.tpd | ||
BUNDLE_DIR=packaging/org.obeonetwork.dsl.uml2.product/target/products/*.zip | ||
DEPLOY_LOCAL_DIR=$1 | ||
echo "Prepare deploy local dir = ${DEPLOY_LOCAL_DIR}" | ||
# Create nightly folder | ||
mkdir $DEPLOY_LOCAL_DIR | ||
# Copy update-site and target platform to deploy local dir | ||
cp -r $UPDATE_SITE_DIR/repository $DEPLOY_LOCAL_DIR | ||
cp -r $UPDATE_SITE_DIR/*.zip $DEPLOY_LOCAL_DIR | ||
cp -r $TP $DEPLOY_LOCAL_DIR | ||
echo "ls ${DEPLOY_LOCAL_DIR}" | ||
ls $DEPLOY_LOCAL_DIR | ||
# Create bundles folder | ||
mkdir $DEPLOY_LOCAL_DIR/bundles | ||
# Copy bundles | ||
cp -r $BUNDLE_DIR $DEPLOY_LOCAL_DIR/bundles | ||
echo "ls ${DEPLOY_LOCAL_DIR}/bundles" | ||
ls $DEPLOY_LOCAL_DIR/bundles | ||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters