Skip to content

Collect Logs

Collect Logs #2

Workflow file for this run

name: Collect Logs
on:
workflow_run:
workflows: ["Run Tests"]
types:
- completed
jobs:
collect-results:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Collect Logs
id: collect_logs
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
mkdir -p results
echo "收集所有日志..."
run_ids=$(gh run list -L 100 --json databaseId --jq '.[].databaseId')
for run_id in $run_ids; do
gh run view $run_id --log > results/log-$run_id.txt
done
- name: Parse Logs
run: |
> x86_64_fixed_images.txt
> arm64_fixed_images.txt
for log_file in $(find results -type f -name "log-*.txt"); do
echo "处理日志文件: $log_file"
success=$(grep -Eo 'success=(true|false)' $log_file | tail -1 | cut -d= -f2)
image=$(grep -Eo 'image=[^ ]+' $log_file | tail -1 | cut -d= -f2)
arch=$(grep -Eo 'arch=[^ ]+' $log_file | tail -1 | cut -d= -f2)
echo "success=$success, image=$image, arch=$arch"
if [ "$success" = "true" ]; then
if [ "$arch" = "amd64" ]; then
echo "$image" >> x86_64_fixed_images.txt
elif [ "$arch" = "arm64" ]; then
echo "$image" >> arm64_fixed_images.txt
fi
fi
done
sort -u x86_64_fixed_images.txt -o x86_64_fixed_images.txt
sort -u arm64_fixed_images.txt -o arm64_fixed_images.txt
echo "最终结果:"
echo "成功的 x86_64 镜像:"
cat x86_64_fixed_images.txt
echo "成功的 arm64 镜像:"
cat arm64_fixed_images.txt
- name: Commit and Push Updated Results
run: |
# 配置 Git 用户信息
git config --global user.name "your-bot-name"
git config --global user.email "[email protected]"
# 确保处于 main 分支
git checkout main
# 添加文件
git add x86_64_fixed_images.txt arm64_fixed_images.txt
# 提交更改(如果有更改才会提交)
git commit -m "Update fixed images list"
# 推送到仓库
git push origin main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}