mirror of
https://github.com/actions/runner-images.git
synced 2025-12-30 13:58:18 +08:00
* Add Pester tests * Fix incorrect merging * Remove swift test from installing script * Minor fix * Remove Haskell tests from commons tests * Fix selenium test * Fix SVN test * Fix pipx tests * Debug * Fix pipx packages test * Skip pipx for 16.04
13 lines
384 B
Bash
13 lines
384 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: subversion.sh
|
|
## Desc: Installs Subversion client
|
|
################################################################################
|
|
|
|
source $HELPER_SCRIPTS/invoke-tests.sh
|
|
|
|
# Install Subversion
|
|
apt-get install -y --no-install-recommends subversion
|
|
|
|
invoke_tests "Tools" "SVN"
|