mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-09-17 14:21:39 +00:00
ACS-3465 Test AGS-Community-Rest-API-Tests ACS-3465 Test AGS-Community-Rest-API-Tests ACS-3465 Test script execution ACS-3465 Increase SearchRecordsTests timeout ACS-3465 Make a script executable ACS-3465 Test script execution ACS-3465 Fix build step in AGS-Community-Rest-API-Tests ACS-3465 Test AGS-Community-Rest-API-Tests ACS-3465 Test AGS-Community-Rest-API-Tests ACS-3465 Test AGS-Community-Rest-API-Tests
21 lines
661 B
Bash
Executable File
21 lines
661 B
Bash
Executable File
#!/usr/bin/env bash
|
|
echo "=========================== Starting Release Script ==========================="
|
|
PS4="\[\e[35m\]+ \[\e[m\]"
|
|
set -vex
|
|
pushd "$(dirname "${BASH_SOURCE[0]}")/../../"
|
|
|
|
# Run the release plugin - with "[skip ci]" in the release commit message
|
|
mvn -B \
|
|
-Pall-tas-tests \
|
|
-Pags \
|
|
"-Darguments=-Pall-tas-tests -Pags -DskipTests -Dbuild-number=${BUILD_NUMBER}" \
|
|
release:clean release:prepare release:perform \
|
|
-DscmCommentPrefix="[maven-release-plugin][skip ci] " \
|
|
-Dusername="${GIT_USERNAME}" \
|
|
-Dpassword="${GIT_PASSWORD}"
|
|
|
|
popd
|
|
set +vex
|
|
echo "=========================== Finishing Release Script =========================="
|
|
|