2024-08-11 11:38:52 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
source $FEATURE_DIR/../../lib/lib.sh
|
|
|
|
source $FEATURE_DIR/../../forgejo/fixtures.sh
|
|
|
|
|
2024-11-12 15:40:12 +01:00
|
|
|
if ! retry bash -c "find $DIR/forgejo-work-path/data/actions_log/root/example-echo | grep --quiet log.zst"; then
|
2024-08-23 16:19:22 +02:00
|
|
|
(
|
|
|
|
cd $DIR/forgejo-work-path
|
|
|
|
find data
|
|
|
|
)
|
|
|
|
echo expected a single log.zst file in data/actions_log/root/example-echo
|
|
|
|
exit 1
|
|
|
|
fi
|