summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2019-01-20 17:59:50 +0000
committerGitHub <noreply@github.com>2019-01-20 17:59:50 +0000
commit1e92a0363db4378cdef40877a33ef7ce3a7e15ac (patch)
treea7974de8bb7a989df10fde0fed69f0cc622e9c8a
parent86b522bdefafc0c4fda7d79e67ede7595de7544c (diff)
parentc9d9e25fb1b7e61277c43d56c6e3fc8bb8f1745f (diff)
downloadlibgit2-1e92a0363db4378cdef40877a33ef7ce3a7e15ac.tar.gz
Merge pull request #4947 from libgit2/ethomson/proxyupdate
ci: update poxyproxy, run in quiet mode
-rw-r--r--ci/test.ps14
-rwxr-xr-xci/test.sh4
2 files changed, 4 insertions, 4 deletions
diff --git a/ci/test.ps1 b/ci/test.ps1
index dcce5f432..06e0ab228 100644
--- a/ci/test.ps1
+++ b/ci/test.ps1
@@ -40,8 +40,8 @@ Write-Host "####################################################################
if (-not $Env:SKIP_PROXY_TESTS) {
Write-Host ""
Write-Host "Starting HTTP proxy..."
- Invoke-WebRequest -Method GET -Uri https://github.com/ethomson/poxyproxy/releases/download/v0.1.0/poxyproxy-0.1.0.jar -OutFile poxyproxy.jar
- javaw -jar poxyproxy.jar -d --port 8080 --credentials foo:bar
+ Invoke-WebRequest -Method GET -Uri https://github.com/ethomson/poxyproxy/releases/download/v0.4.0/poxyproxy-0.4.0.jar -OutFile poxyproxy.jar
+ javaw -jar poxyproxy.jar -d --port 8080 --credentials foo:bar --quiet
}
Write-Host ""
diff --git a/ci/test.sh b/ci/test.sh
index ebf6479d5..136ff2581 100755
--- a/ci/test.sh
+++ b/ci/test.sh
@@ -79,8 +79,8 @@ fi
if [ -z "$SKIP_PROXY_TESTS" ]; then
echo "Starting HTTP proxy..."
- curl -L https://github.com/ethomson/poxyproxy/releases/download/v0.2.0/poxyproxy-0.2.0.jar >poxyproxy.jar
- java -jar poxyproxy.jar -d --address 127.0.0.1 --port 8080 --credentials foo:bar >/dev/null 2>&1 &
+ curl -L https://github.com/ethomson/poxyproxy/releases/download/v0.4.0/poxyproxy-0.4.0.jar >poxyproxy.jar
+ java -jar poxyproxy.jar -d --address 127.0.0.1 --port 8080 --credentials foo:bar --quiet &
fi
if [ -z "$SKIP_SSH_TESTS" ]; then