Try a version that matches Ubuntu's.

This commit is contained in:
Itamar Turner-Trauring 2022-02-15 14:51:55 -05:00
parent 510102dab1
commit 3a859e3cac
2 changed files with 6 additions and 1 deletions

View File

@ -170,10 +170,15 @@ jobs:
if: matrix.os == 'ubuntu-latest'
run: sudo apt install tor
# TODO: See https://tahoe-lafs.org/trac/tahoe-lafs/ticket/3744.
# We have to use an older version of Tor for running integration
# tests on macOS.
- name: Install Tor [macOS, ${{ matrix.python-version }} ]
if: ${{ contains(matrix.os, 'macos') }}
run: |
brew install tor
brew extract --version 0.4.2.7 tor homebrew/cask
brew install tor@0.4.2.7
brew link --overwrite tor@0.4.2.7
- name: Install Tor [Windows]
if: matrix.os == 'windows-latest'