mirror of
https://github.com/YGGverse/aquatic.git
synced 2026-03-31 17:55:36 +00:00
github actions: rewrite file test action to fix ulimit; add timeouts
This commit is contained in:
parent
08488f50cd
commit
d0aa87f99e
5 changed files with 20 additions and 13 deletions
10
.github/actions/test-transfer/entrypoint.sh
vendored
10
.github/actions/test-transfer/entrypoint.sh
vendored
|
|
@ -5,11 +5,6 @@
|
|||
#
|
||||
# IPv6 is unfortunately disabled by default in Docker
|
||||
# (see sysctl net.ipv6.conf.lo.disable_ipv6)
|
||||
#
|
||||
# When testing locally, use:
|
||||
# 1. docker build -t aquatic ./path/to/Dockerfile
|
||||
# 2. docker run aquatic
|
||||
# 3. On failure, run `docker rmi aquatic -f` and go back to step 1
|
||||
|
||||
set -e
|
||||
|
||||
|
|
@ -21,6 +16,8 @@ else
|
|||
SUDO=""
|
||||
fi
|
||||
|
||||
ulimit -a
|
||||
|
||||
$SUDO apt-get update
|
||||
$SUDO apt-get install -y cmake libssl-dev screen rtorrent mktorrent ssl-cert ca-certificates curl golang
|
||||
|
||||
|
|
@ -43,6 +40,9 @@ else
|
|||
cd "$GITHUB_WORKSPACE"
|
||||
fi
|
||||
|
||||
echo "last aquatic commits:"
|
||||
git log --oneline -3
|
||||
|
||||
# Setup bogus TLS certificate
|
||||
|
||||
$SUDO echo "127.0.0.1 example.com" >> /etc/hosts
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue