commit b4df7a1b23cb6dbaaebea362c83ecd504251f8e8 Author: teor teor@torproject.org Date: Tue Mar 12 13:45:30 2019 +1000
Travis: also test chutney works with tor 0.3.4 and 0.4.0 --- .travis.yml | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-)
diff --git a/.travis.yml b/.travis.yml index f78a387..829107a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,7 +23,7 @@ matrix: language: c python: env: TOR="stable-release" - ## Test tor lts, stable, alpha, and nightly + ## Test all supported and available tor versions on Linux ## Standard dpkg configs fall back to stable when newer ## repositories are removed. But we want to fail, so we notice and ## update the repositories. @@ -41,11 +41,30 @@ matrix: - addons: apt: sources: + - sourceline: 'deb https://deb.torproject.org/torproject.org tor-nightly-0.3.4.x-xenial main' + key_url: 'https://deb.torproject.org/torproject.org/A3C4F0F979CAA22CDBA8F512EE8CBC9E88...' + packages: + - tor + env: TOR="0.3.4-nightly" + ## The current stable release is listed at the end of the file, because + ## it is the default for other build variants + - addons: + apt: + sources: - sourceline: 'deb https://deb.torproject.org/torproject.org tor-nightly-0.3.5.x-xenial main' key_url: 'https://deb.torproject.org/torproject.org/A3C4F0F979CAA22CDBA8F512EE8CBC9E88...' packages: - tor env: TOR="0.3.5-nightly" + ## The experimental deb line needs to be updated when 0.4.0 becomes stable + - addons: + apt: + sources: + - sourceline: 'deb https://deb.torproject.org/torproject.org tor-experimental-0.4.0.x-xenial main' + key_url: 'https://deb.torproject.org/torproject.org/A3C4F0F979CAA22CDBA8F512EE8CBC9E88...' + packages: + - tor + env: TOR="0.4.0-nightly" - addons: apt: sources:
tor-commits@lists.torproject.org