mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
[AAE-3278] Temporary fix for some flakyness: C297638 and C297638 (#1602)
This commit is contained in:
@@ -1,30 +1,37 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Run the build on mergin to development with always the latest ADF
|
||||
if [ "${TRAVIS_BRANCH}" == "develop" ] && [ "${TRAVIS_EVENT_TYPE}" == "api" ] || [ "${TRAVIS_EVENT_TYPE}" == "cron" ] || [ "${TRAVIS_EVENT_TYPE}" == "push" ]; then
|
||||
# Run the build on develop branch with always the latest ADF
|
||||
if [[ "${TRAVIS_BRANCH}" == "develop" && ( "${TRAVIS_EVENT_TYPE}" == "api" || "${TRAVIS_EVENT_TYPE}" == "cron" || "${TRAVIS_EVENT_TYPE}" == "push" ) ]]; then
|
||||
echo " ===== USING LATEST ADF VERSION ===== "
|
||||
./scripts/update-version.sh -v $ADF_RELEASE_VERSION
|
||||
fi
|
||||
|
||||
pip install --user awscli
|
||||
|
||||
# Settings for Angular builder --------------------------------------------------------
|
||||
export NODE_OPTIONS="--max_old_space_size=30000"
|
||||
|
||||
# Settings for protractor-smartrunner -------------------------------------------------
|
||||
export GIT_HASH=`git rev-parse HEAD`
|
||||
S3_DBP_PATH="s3://alfresco-travis-builds/aca"
|
||||
export SMART_RUNNER_DIRECTORY=".protractor-smartrunner"
|
||||
|
||||
# Settings for Nx ---------------------------------------------------------------------
|
||||
export BASE_HASH="$(git describe --tags `git rev-list --tags --max-count=1`)"
|
||||
export HEAD_HASH="HEAD"
|
||||
|
||||
# Settings for S3 caching -------------------------------------------------------------
|
||||
pip install --user awscli
|
||||
S3_DBP_PATH="s3://alfresco-travis-builds/aca"
|
||||
if [ "${TRAVIS_EVENT_TYPE}" == "push" ]; then
|
||||
export S3_DBP_FOLDER="$S3_DBP_PATH/$TRAVIS_BRANCH/$TRAVIS_BUILD_ID"
|
||||
export S3_DBP_ROOT_FOLDER="$S3_DBP_PATH/$TRAVIS_BRANCH"
|
||||
elif [ "${TRAVIS_EVENT_TYPE}" == "pull_request" ]; then
|
||||
export S3_DBP_FOLDER="$S3_DBP_PATH/$TRAVIS_PULL_REQUEST/$TRAVIS_BUILD_ID"
|
||||
export S3_DBP_ROOT_FOLDER="$S3_DBP_PATH/$TRAVIS_PULL_REQUEST"
|
||||
export BASE_HASH="origin/$TRAVIS_BRANCH"
|
||||
elif [ "${TRAVIS_EVENT_TYPE}" == "cron" ]; then
|
||||
export S3_DBP_FOLDER="$S3_DBP_PATH/cron/$TRAVIS_BUILD_ID"
|
||||
export S3_DBP_ROOT_FOLDER="$S3_DBP_PATH/cron"
|
||||
else
|
||||
export S3_DBP_FOLDER="$S3_DBP_PATH/api/$TRAVIS_BUILD_ID"
|
||||
export S3_DBP_ROOT_FOLDER="$S3_DBP_PATH/api"
|
||||
fi
|
||||
export S3_DBP_FOLDER="$S3_DBP_ROOT_FOLDER/$TRAVIS_BUILD_ID"
|
||||
|
||||
echo "BASE_HASH: $BASE_HASH"
|
||||
echo "S3 DBP root folder: $S3_DBP_ROOT_FOLDER"
|
||||
echo "S3 DBP destination: $S3_DBP_FOLDER"
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user