Skip to content

Commit

Permalink
Add GH SVN dependency to CI scripts (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbarbosa authored Jan 2, 2025
1 parent 757b4e9 commit 5858422
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
6 changes: 6 additions & 0 deletions bin/run-ci-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ BLAZEADS_DIR="$GITHUB_WORKSPACE"
echo 'Updating composer version & Install dependencies...'
composer self-update && composer install --no-progress

# SVN is needed when installing WP.
if ! [ -x "$(command -v svn)" ]; then
echo 'Installing SVN...'
sudo apt-get install -y subversion
fi

echo 'Starting MySQL service...'
sudo systemctl start mysql.service

Expand Down
5 changes: 5 additions & 0 deletions changelog/fix-add-svn-ci-scripts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Significance: patch
Type: fix
Comment: Add GH action SVN dependency


0 comments on commit 5858422

Please sign in to comment.