mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* [ACA-3596] Fix e2e due to process header properties changes * Change pages structure * Move the build demoshell as last step and exclude for PR * move more pages * change testing pkg * better JSON import * update script * move CLOUD in the right place * some logs and not used methods * retrycout Co-authored-by: maurizio vitale <maurizio.vitale@alfresco.com> Co-authored-by: Eugenio Romano <eugenio.romano@alfresco.com> Co-authored-by: Eugenio Romano <eromano@users.noreply.github.com>
38 lines
993 B
Bash
Executable File
38 lines
993 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
cd $DIR/../../../
|
|
|
|
rm -rf tmp && mkdir tmp;
|
|
|
|
npx @alfresco/adf-cli@alpha update-commit-sha --pointer "HEAD" --pathPackage "$(pwd)"
|
|
|
|
if [[ $TRAVIS_PULL_REQUEST == "false" ]];
|
|
then
|
|
if [[ $TRAVIS_BRANCH == "develop" ]];
|
|
then
|
|
NEXT_VERSION=-nextalpha
|
|
if [[ $TRAVIS_EVENT_TYPE == "cron" ]];
|
|
then
|
|
NEXT_VERSION=-nextbeta
|
|
fi
|
|
./scripts/update-version.sh -gnu $NEXT_VERSION || exit 1;
|
|
fi
|
|
|
|
node ./scripts/pre-publish.js
|
|
|
|
npm install
|
|
|
|
./scripts/build/build-all-lib.sh
|
|
|
|
else
|
|
echo "====== Update the package.json with latest JS-API/CLI deps ====="
|
|
npx @alfresco/adf-cli@alpha update-version --alpha --pathPackage "$(pwd)"
|
|
npm install;
|
|
nx affected --target=build --base=$BASE_HASH --head=$HEAD_HASH --exclude="cli,demoshell" --prod --with-deps || exit 1;
|
|
fi;
|
|
|
|
echo "====== Build Demo shell for production ====="
|
|
nx build demoshell --prod
|