Eugenio Romano 10587dd842
Refactor e2e PS-Cloud and add sleep before query (#4919)
* add sleep before query process service and refactor resources process name

* fix spell problem and increase size build check core
2019-07-11 16:25:26 +01:00

40 lines
779 B
Bash
Executable File

#!/usr/bin/env bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd $DIR
echo "====== Run lib ====="
echo "====== Run extensions ====="
./build-extensions.sh
echo "====== run core ====="
./build-core.sh
echo "====== Run content-services ====="
./build-content-services.sh
echo "====== Run process-services ====="
./build-process-services.sh
echo "====== Run insights ====="
./build-insights.sh
echo "====== Run process-services-cloud ====="
./build-process-services-cloud.sh
echo "====== Run testing ====="
./build-testing.sh
echo "====== Run Cli ====="
./build-cli.sh
echo "====== Copy schema ====="
cp ../../lib/core/app-config/schema.json ../../lib/dist/core/app.config.schema.json
echo "====== Bundle check ====="
npm run bundlesize-check || exit 1