惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园_首页
雷峰网
雷峰网
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
WordPress大学
WordPress大学
腾讯CDC
T
Tailwind CSS Blog
A
About on SuperTechFans
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
G
Google Developers Blog
The Cloudflare Blog
D
DataBreaches.Net
Recent Announcements
Recent Announcements
Engineering at Meta
Engineering at Meta
B
Blog
博客园 - 聂微东
阮一峰的网络日志
阮一峰的网络日志
月光博客
月光博客
博客园 - 司徒正美
MongoDB | Blog
MongoDB | Blog
Google DeepMind News
Google DeepMind News
Apple Machine Learning Research
Apple Machine Learning Research

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
ci: preinstall ffmpeg for live media checks · openclaw/op...
steipete · 2026-04-29 · via Recent Commits to openclaw:main

File tree

  • .agents/skills/openclaw-testing

  • .github

    • images/live-media-runner

    • workflows

  • docs

Original file line numberDiff line numberDiff line change

@@ -222,6 +222,13 @@ When `Full Release Validation` dispatches release checks, it passes the requeste

222222

branch/tag plus an `expected_sha` so branch/tag refs resolve through the fast

223223

remote-ref path while the package and QA jobs still validate the exact SHA.

224224
225+

The full-profile native live media shards use the prebuilt

226+

`ghcr.io/openclaw/openclaw-live-media-runner:ubuntu-24.04` container so

227+

`ffmpeg`/`ffprobe` are already present. If those jobs suddenly spend minutes in

228+

dependency setup again, first check the `Live Media Runner Image` workflow and

229+

the `Verify preinstalled live media dependencies` step before assuming the media

230+

tests themselves slowed down.

231+
225232

The release Docker path intentionally shards the plugin/runtime tail. The

226233

workflow uses `plugins-runtime-plugins`, `plugins-runtime-services`, and

227234

`plugins-runtime-install-a` through `plugins-runtime-install-d`; aggregate

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,16 @@

1+

FROM ubuntu:24.04

2+
3+

ENV DEBIAN_FRONTEND=noninteractive

4+
5+

RUN apt-get update \

6+

&& apt-get install -y --no-install-recommends \

7+

bash \

8+

ca-certificates \

9+

curl \

10+

ffmpeg \

11+

git \

12+

openssh-client \

13+

unzip \

14+

xz-utils \

15+

zstd \

16+

&& rm -rf /var/lib/apt/lists/*

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,54 @@

1+

name: Live Media Runner Image

2+
3+

on:

4+

workflow_dispatch:

5+

push:

6+

branches: [main]

7+

paths:

8+

- ".github/images/live-media-runner/Dockerfile"

9+

- ".github/workflows/live-media-runner-image.yml"

10+
11+

permissions:

12+

contents: read

13+

packages: write

14+
15+

concurrency:

16+

group: live-media-runner-image-${{ github.ref }}

17+

cancel-in-progress: true

18+
19+

env:

20+

FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"

21+
22+

jobs:

23+

build:

24+

name: Build live media runner image

25+

runs-on: blacksmith-8vcpu-ubuntu-2404

26+

timeout-minutes: 30

27+

steps:

28+

- name: Checkout

29+

uses: actions/checkout@v6

30+
31+

- name: Login to GHCR

32+

uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0

33+

with:

34+

registry: ghcr.io

35+

username: ${{ github.actor }}

36+

password: ${{ github.token }}

37+
38+

- name: Set up Blacksmith Docker Builder

39+

uses: useblacksmith/setup-docker-builder@ac083cc84672d01c60d5e8561d0a939b697de542 # v1

40+

with:

41+

max-cache-size-mb: 800000

42+
43+

- name: Build and push live media runner image

44+

uses: useblacksmith/build-push-action@cbd1f60d194a98cb3be5523b15134501eaf0fbf3 # v2

45+

with:

46+

context: .github/images/live-media-runner

47+

file: .github/images/live-media-runner/Dockerfile

48+

platforms: linux/amd64

49+

tags: |

50+

ghcr.io/openclaw/openclaw-live-media-runner:ubuntu-24.04

51+

ghcr.io/openclaw/openclaw-live-media-runner:${{ github.sha }}

52+

sbom: true

53+

provenance: mode=max

54+

push: true