We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I'm using linkcheck in a GitLab CI pipeline (great fit for that, thanks :) ), in which the gitlab runner sets the services ip in /etc/hosts:
/etc/hosts
172.17.0.3 page a38b629b0x30 runner--azerasq-project-20139812-concurrent-0-d873acae5x916b84-registry.gitlab.com__txlab__liebeskunstwerk-0
Sadly, linkcheck -e http://page doesn't pick it up
linkcheck -e http://page
http://page (connection failed)
while curl http://page works
curl http://page
My current workaround is using this:
- IP="$(getent ahosts page | cut -d' ' -f1 | sort -u)" - "linkcheck -e http://$IP"
Is it possible that linkcheck can incorporate this? Got no idea about Dart sadly :/
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, I'm using linkcheck in a GitLab CI pipeline (great fit for that, thanks :) ), in which the gitlab runner sets the services ip in
/etc/hosts
:Sadly,
linkcheck -e http://page
doesn't pick it upwhile
curl http://page
worksMy current workaround is using this:
Is it possible that linkcheck can incorporate this? Got no idea about Dart sadly :/
The text was updated successfully, but these errors were encountered: