mirror of
https://github.com/joomla-extensions/weblinks.git
synced 2025-01-28 23:08:27 +00:00
25 lines
623 B
Bash
25 lines
623 B
Bash
#!/usr/bin/env bash
|
|
VERSION="$(git rev-parse --short HEAD)"
|
|
|
|
echo "Started building at $(date) - $(whoami)"
|
|
|
|
# Update composer
|
|
composer self-update
|
|
|
|
# Install dependencies
|
|
composer install --no-interaction --no-progress
|
|
|
|
cp jorobo.dist.ini jorobo.ini
|
|
cp RoboFile.dist.ini RoboFile.ini
|
|
|
|
# Create the apache root directory then configure the RoboFile to use it for the Joomla Site
|
|
mkdir -p /tests/www
|
|
chown -R www-data /tests
|
|
sed -i -r 's!^(cmsPath\s*=\s*)(.*)!\1\/tests\/www\/\2!' RoboFile.ini
|
|
|
|
# Build package
|
|
vendor/bin/robo build --dev
|
|
|
|
# Copy acceptance yml
|
|
cp tests/acceptance.suite.dist.yml tests/acceptance.suite.yml
|