From a268544a1be56b7743d0337fe2feb7037ce8b126 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Frosteg=C3=A5rd?= Date: Mon, 16 Aug 2021 19:54:02 +0200 Subject: [PATCH] CI: use debian buster; make go accept TLS CommonNames in certs --- .github/actions/test-transfer/Dockerfile | 2 +- .github/actions/test-transfer/entrypoint.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/test-transfer/Dockerfile b/.github/actions/test-transfer/Dockerfile index b297bc7..7e01849 100644 --- a/.github/actions/test-transfer/Dockerfile +++ b/.github/actions/test-transfer/Dockerfile @@ -1,5 +1,5 @@ # Container image that runs your code -FROM rust:bullseye +FROM rust:latest # Copies your code file from your action repository to the filesystem path `/` of the container COPY entrypoint.sh /entrypoint.sh diff --git a/.github/actions/test-transfer/entrypoint.sh b/.github/actions/test-transfer/entrypoint.sh index d1cc3aa..3a5d95e 100755 --- a/.github/actions/test-transfer/entrypoint.sh +++ b/.github/actions/test-transfer/entrypoint.sh @@ -246,7 +246,7 @@ screen -dmS rtorrent-leech rtorrent git clone https://github.com/anacrolix/torrent.git leech cd leech -GOPPROF=http go run -v ./cmd/torrent download ../torrents/wss-ipv4.torrent > "$HOME/wss-leech.log" 2>&1 & +GOPPROF=http GODEBUG=x509ignoreCN=0 go run -v ./cmd/torrent download ../torrents/wss-ipv4.torrent > "$HOME/wss-leech.log" 2>&1 & cd .. # Check for completion