Skip to content

Commit bf316e6

Browse files
committed
explicitly install subversion and mercurial on Ubuntu CI runners
1 parent 7007451 commit bf316e6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/push.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ jobs:
2929
- run: get-command python ; python --version ; get-command pip ; pip --version
3030
if: matrix.os == 'windows-latest'
3131
- run: git --version
32-
# macOS doesn't currently have hg or svnadmin installed by default.
32+
# Make sure Subversion and Mercurial are installed on Windows and macOS.
33+
- run: sudo apt-get update && sudo apt-get install -y subversion mercurial
34+
if: matrix.os == 'ubuntu-latest'
3335
- run: brew install subversion
3436
if: matrix.os == 'macOS-latest'
3537
- run: pip install wheel && pip install mercurial

0 commit comments

Comments
 (0)