release/0.4.0 #60

Merged
myrmidex merged 30 commits from release/0.4.0 into main 2026-08-16 11:58:52 +02:00
Showing only changes of commit bb476b36a2 - Show all commits

View file

@ -37,6 +37,18 @@ jobs:
- name: Prepare environment - name: Prepare environment
run: cp .env.testing .env run: cp .env.testing .env
# Temporary: MySQL is unreachable at db:3306 under the prebuilt image,
# though the identical service block worked on catthehacker/ubuntu.
- name: Diagnose service networking
continue-on-error: true
run: |
echo "--- /etc/hosts ---"; cat /etc/hosts || true
echo "--- /etc/resolv.conf ---"; cat /etc/resolv.conf || true
echo "--- php resolves db ---"; php -r 'var_dump(gethostbyname("db"));' || true
echo "--- php connect ---"; php -r '$e=null;$f=@fsockopen("db",3306,$n,$e,3);echo $f?"open\n":"fail: $e\n";' || true
echo "--- hostname/ip ---"; hostname -i 2>/dev/null || true
echo "--- env ---"; env | sort | grep -iE "host|service|port" || true
- name: Wait for MySQL - name: Wait for MySQL
run: | run: |
for i in $(seq 1 30); do for i in $(seq 1 30); do