mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
Add missing documentation for extension loader callbacks (#1457)
* Add missing documentation for extension loader callbacks * Fix messed up pipeline, how it could work until now??? * Travis yml fix * Travis yml fix
This commit is contained in:
@@ -1,5 +1,10 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Run the build on mergin to development with always the latest ADF
|
||||
if [ "${TRAVIS_BRANCH}" == "develop" ] && [ "${TRAVIS_EVENT_TYPE}" == "push" ]; then
|
||||
./scripts/update-version.sh -v --$ADF_RELEASE_VERSION
|
||||
fi
|
||||
|
||||
pip install --user awscli
|
||||
|
||||
export NODE_OPTIONS="--max_old_space_size=30000"
|
||||
|
@@ -1,7 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
|
||||
if [ "${TRAVIS_BRANCH}" != "master" ]; then
|
||||
./scripts/update-version.sh -v alpha
|
||||
fi
|
@@ -23,12 +23,16 @@ set_version() {
|
||||
}
|
||||
|
||||
update(){
|
||||
for (( j=0; j<${libslength}; j++ ));
|
||||
eval libsWithVersions=();
|
||||
|
||||
for (( i=0; i<${libslength}; i++ ));
|
||||
do
|
||||
EXACT_VERSION="${libs[$j]}@${VERSION}"
|
||||
echo "====== ${EXACT_VERSION} ======"
|
||||
npm i -E ${EXACT_VERSION}
|
||||
EXACT_VERSION="${libs[$i]}@${VERSION}"
|
||||
eval libsWithVersions=( "${libsWithVersions[@]}" "${EXACT_VERSION}" )
|
||||
done
|
||||
|
||||
echo "npm i --ignore-scripts -E ${libsWithVersions[*]}"
|
||||
npm i --ignore-scripts -E ${libsWithVersions[*]}
|
||||
}
|
||||
|
||||
while [[ $1 == -* ]]; do
|
||||
|
Reference in New Issue
Block a user