mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-09-17 14:21:39 +00:00
* Remove travis configuration files
* Added property dependency.alfresco-transform-core.version
* Added github action configuration for 7.2.1
* Add missing scripts and adjust start-compose.sh
* Give execution permissions to scripts
* ACS-3841 Add missing logs for WebDAV TAS tests (#1629)
* ACS-3841 Add missing logs
* ACS-3841 Reformat code + fix grep
(cherry picked from commit cdbe3292e0
)
* Move ags ci getLogs script. Update badge on readme
15 lines
714 B
Bash
15 lines
714 B
Bash
#!/usr/bin/env bash
|
|
|
|
echo "=========================== Starting AppContext05TestSuite setup ==========================="
|
|
PS4="\[\e[35m\]+ \[\e[m\]"
|
|
set -vex
|
|
pushd "$(dirname "${BASH_SOURCE[0]}")/../../../"
|
|
|
|
mkdir -p "${HOME}/tmp"
|
|
cp repository/src/test/resources/realms/alfresco-realm.json "${HOME}/tmp"
|
|
echo "HOST_IP=$(hostname -I | cut -f1 -d' ')" >> $GITHUB_ENV
|
|
docker run -d -e KEYCLOAK_USER=admin -e KEYCLOAK_PASSWORD=admin -e DB_VENDOR=h2 -p 8999:8080 -e KEYCLOAK_IMPORT=/tmp/alfresco-realm.json -v $HOME/tmp/alfresco-realm.json:/tmp/alfresco-realm.json alfresco/alfresco-identity-service:1.2
|
|
|
|
popd
|
|
set +vex
|
|
echo "=========================== Finishing AppContext05TestSuite setup ==========================" |