mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-24 09:26:14 -04:00
ci: no need to include java
The dependency on java was introduced in 2012 (c021cf52d8
) to start Sauce-Connect from sauce labs. Probably at the time it was a runtime dependency, but it is no longer the case today. It is possible that java was already not needed whendb003a1460
changed from downloading Sauce-Connect-latest.zip to sc-latest-linux.tar.gz. Moreover, I am quite sure tests/frontend/travis/sauce_tunnel.sh no longer works today, because tests/frontend/travis/sauce_tunnel.sh downloads from an url that gives HTTP/404 now: sc-latest-linux.tar.gz if no longer a valid file name, we would need to explicitly download a specific version.
This commit is contained in:
parent
cffa3e0a5d
commit
bf0bb58c70
2 changed files with 6 additions and 3 deletions
|
@ -1,5 +1,11 @@
|
|||
#!/bin/bash
|
||||
# download and unzip the sauce connector
|
||||
#
|
||||
# ACHTUNG: as of 2019-12-21, downloading sc-latest-linux.tar.gz does not work.
|
||||
# It is necessary to explicitly download a specific version, for
|
||||
# example https://saucelabs.com/downloads/sc-4.5.4-linux.tar.gz
|
||||
# Supported versions are currently listed at:
|
||||
# https://wiki.saucelabs.com/display/DOCS/Downloading+Sauce+Connect+Proxy
|
||||
curl https://saucelabs.com/downloads/sc-latest-linux.tar.gz > /tmp/sauce.tar.gz
|
||||
tar zxf /tmp/sauce.tar.gz --directory /tmp
|
||||
mv /tmp/sc-*-linux /tmp/sauce_connect
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue