Skip to content

Commit

Permalink
ci: Install subversion (#162)
Browse files Browse the repository at this point in the history
The following command executed by CI fails:
```
svnadmin create tmp/test/subversion_repository
zcat test/fixtures/repositories/subversion_repository.dump.gz | \
  svnadmin load tmp/test/subversion_repository
```

Error:
```
svnadmin: command not found
```

It seems that it is no longer installed by default in Ubuntu 24.
  • Loading branch information
abetomo authored Dec 20, 2024
1 parent 6c3e1dc commit 56349a6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,10 @@ jobs:
esac
- name: Install dependencies
run: |
sudo apt update
sudo apt install -y subversion
case ${RDBMS} in
postgresql)
sudo apt update
sudo apt install -y postgresql-client
;;
esac
Expand Down

0 comments on commit 56349a6

Please sign in to comment.