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

推荐订阅源

博客园 - 叶小钗
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Security Blog
Microsoft Security Blog
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
美团技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
aimingoo的专栏
aimingoo的专栏
腾讯CDC
WordPress大学
WordPress大学
Apple Machine Learning Research
Apple Machine Learning Research
F
Fortinet All Blogs
G
Google Developers Blog
MongoDB | Blog
MongoDB | Blog
Microsoft Azure Blog
Microsoft Azure Blog
小众软件
小众软件
Engineering at Meta
Engineering at Meta
博客园_首页
B
Blog RSS Feed
D
Docker
M
MIT News - Artificial intelligence
爱范儿
爱范儿
I
InfoQ

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: reuse build artifacts for gateway topology · openclaw...
steipete · 2026-04-23 · via Recent Commits to openclaw:main

@@ -544,6 +544,12 @@ jobs:

544544

include-hidden-files: true

545545

retention-days: 1

546546547+

- name: Cache dist-runtime build

548+

uses: actions/cache@v5

549+

with:

550+

path: dist-runtime/

551+

key: ${{ runner.os }}-dist-runtime-build-${{ github.sha }}

552+547553

checks-fast-core:

548554

permissions:

549555

contents: read

@@ -1606,8 +1612,6 @@ jobs:

16061612

group: extension-bundled

16071613

- check_name: check-additional-extension-package-boundary

16081614

group: extension-package-boundary

1609-

- check_name: check-additional-runtime-topology-gateway

1610-

group: runtime-topology-gateway

16111615

- check_name: check-additional-runtime-topology-architecture

16121616

group: runtime-topology-architecture

16131617

steps:

@@ -1706,7 +1710,6 @@ jobs:

17061710

- name: Run additional check shard

17071711

env:

17081712

ADDITIONAL_CHECK_GROUP: ${{ matrix.group }}

1709-

RUN_CONTROL_UI_I18N: ${{ needs.preflight.outputs.run_control_ui_i18n }}

17101713

OPENCLAW_EXTENSION_BOUNDARY_CONCURRENCY: 6

17111714

shell: bash

17121715

run: |

@@ -1759,12 +1762,6 @@ jobs:

17591762

run_check "test:extensions:package-boundary:compile" pnpm run test:extensions:package-boundary:compile

17601763

run_check "test:extensions:package-boundary:canary" pnpm run test:extensions:package-boundary:canary

17611764

;;

1762-

runtime-topology-gateway)

1763-

if [ "$RUN_CONTROL_UI_I18N" = "true" ]; then

1764-

run_check "ui:i18n:check" pnpm ui:i18n:check

1765-

fi

1766-

run_check "gateway-watch-regression" pnpm test:gateway:watch-regression

1767-

;;

17681765

runtime-topology-architecture)

17691766

run_check "check:architecture" pnpm check:architecture

17701767

;;

@@ -1776,8 +1773,121 @@ jobs:

1776177317771774

exit "$failures"

177817751776+

check-additional-runtime-topology-gateway:

1777+

permissions:

1778+

contents: read

1779+

name: "check-additional-runtime-topology-gateway"

1780+

needs: [preflight, build-artifacts]

1781+

if: ${{ !cancelled() && always() && needs.preflight.outputs.run_check_additional == 'true' && needs.build-artifacts.result == 'success' }}

1782+

runs-on: ubuntu-24.04

1783+

timeout-minutes: 20

1784+

steps:

1785+

- name: Checkout

1786+

shell: bash

1787+

env:

1788+

CHECKOUT_REPO: ${{ github.repository }}

1789+

CHECKOUT_SHA: ${{ github.sha }}

1790+

CHECKOUT_TOKEN: ${{ github.token }}

1791+

run: |

1792+

set -euo pipefail

1793+1794+

workdir="$GITHUB_WORKSPACE"

1795+

auth_header="$(printf 'x-access-token:%s' "$CHECKOUT_TOKEN" | base64 | tr -d '\n')"

1796+1797+

reset_checkout_dir() {

1798+

mkdir -p "$workdir"

1799+

find "$workdir" -mindepth 1 -maxdepth 1 -exec rm -rf {} +

1800+

}

1801+1802+

checkout_attempt() {

1803+

local attempt="$1"

1804+1805+

reset_checkout_dir

1806+

git init "$workdir" >/dev/null

1807+

git config --global --add safe.directory "$workdir"

1808+

git -C "$workdir" remote add origin "https://github.com/${CHECKOUT_REPO}"

1809+

git -C "$workdir" config gc.auto 0

1810+1811+

timeout --signal=TERM 30s git -C "$workdir" \

1812+

-c protocol.version=2 \

1813+

-c "http.https://github.com/.extraheader=AUTHORIZATION: basic ${auth_header}" \

1814+

fetch --no-tags --prune --no-recurse-submodules --depth=1 origin \

1815+

"+${CHECKOUT_SHA}:refs/remotes/origin/ci-target" || return 1

1816+1817+

git -C "$workdir" checkout --force --detach "$CHECKOUT_SHA" || return 1

1818+

test -f "$workdir/.github/actions/setup-node-env/action.yml" || return 1

1819+

echo "checkout attempt ${attempt}/2 succeeded"

1820+

}

1821+1822+

for attempt in 1 2; do

1823+

if checkout_attempt "$attempt"; then

1824+

exit 0

1825+

fi

1826+

echo "checkout attempt ${attempt}/2 failed"

1827+

sleep $((attempt * 5))

1828+

done

1829+1830+

echo "checkout failed after 2 attempts" >&2

1831+

exit 1

1832+1833+

- name: Setup Node environment

1834+

uses: ./.github/actions/setup-node-env

1835+

with:

1836+

install-bun: "false"

1837+1838+

- name: Restore dist cache

1839+

id: gateway-dist-cache

1840+

uses: actions/cache@v5

1841+

with:

1842+

path: dist/

1843+

key: ${{ runner.os }}-dist-build-${{ github.sha }}

1844+1845+

- name: Download dist artifact

1846+

if: steps.gateway-dist-cache.outputs.cache-hit != 'true'

1847+

uses: actions/download-artifact@v8

1848+

with:

1849+

name: dist-build

1850+

path: dist/

1851+1852+

- name: Restore dist-runtime cache

1853+

id: gateway-dist-runtime-cache

1854+

uses: actions/cache@v5

1855+

with:

1856+

path: dist-runtime/

1857+

key: ${{ runner.os }}-dist-runtime-build-${{ github.sha }}

1858+1859+

- name: Run runtime topology gateway checks

1860+

env:

1861+

RUN_CONTROL_UI_I18N: ${{ needs.preflight.outputs.run_control_ui_i18n }}

1862+

shell: bash

1863+

run: |

1864+

set -euo pipefail

1865+1866+

failures=0

1867+1868+

run_check() {

1869+

local label="$1"

1870+

shift

1871+1872+

echo "::group::${label}"

1873+

if "$@"; then

1874+

echo "[ok] ${label}"

1875+

else

1876+

echo "::error title=${label} failed::${label} failed"

1877+

failures=1

1878+

fi

1879+

echo "::endgroup::"

1880+

}

1881+1882+

if [ "$RUN_CONTROL_UI_I18N" = "true" ]; then

1883+

run_check "ui:i18n:check" pnpm ui:i18n:check

1884+

fi

1885+

run_check "gateway-watch-regression" node scripts/check-gateway-watch-regression.mjs --skip-build

1886+1887+

exit "$failures"

1888+17791889

- name: Upload gateway watch regression artifacts

1780-

if: always() && matrix.group == 'runtime-topology-gateway'

1890+

if: always()

17811891

uses: actions/upload-artifact@v7

17821892

with:

17831893

name: gateway-watch-regression

@@ -1788,19 +1898,24 @@ jobs:

17881898

permissions:

17891899

contents: read

17901900

name: "check-additional"

1791-

needs: [preflight, check-additional-shard]

1901+

needs: [preflight, check-additional-shard, check-additional-runtime-topology-gateway]

17921902

if: ${{ !cancelled() && always() && needs.preflight.outputs.run_check_additional == 'true' }}

17931903

runs-on: ubuntu-24.04

17941904

timeout-minutes: 5

17951905

steps:

17961906

- name: Verify additional check shards

17971907

env:

17981908

SHARD_RESULT: ${{ needs.check-additional-shard.result }}

1909+

GATEWAY_RESULT: ${{ needs.check-additional-runtime-topology-gateway.result }}

17991910

run: |

18001911

if [ "$SHARD_RESULT" != "success" ]; then

18011912

echo "Additional check shards failed: $SHARD_RESULT" >&2

18021913

exit 1

18031914

fi

1915+

if [ "$GATEWAY_RESULT" != "success" ]; then

1916+

echo "Runtime topology gateway check failed: $GATEWAY_RESULT" >&2

1917+

exit 1

1918+

fi

1804191918051920

build-smoke:

18061921

permissions: