Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
ee753c9
fix(ci): give the ECS runner resolve wait a 60-minute budget
yiliang114 Sep 3, 2026
3fc83d5
fix(ci): size the resolve wait on the measured 55-minute propagation
yiliang114 Sep 3, 2026
290d730
ci: print install-prefix diagnostics when the version check fails
yiliang114 Sep 3, 2026
c64936d
fix(ci): pin the fleet install to the /usr/local prefix
yiliang114 Sep 3, 2026
16b7737
fix(ci): fall back to a non-sudo install where passwordless sudo is m…
yiliang114 Sep 3, 2026
3eeeaf8
Merge branch 'main' into fix/ecs-runner-resolve-budget
yiliang114 Sep 3, 2026
72b49c5
test(ci): follow the fleet install step's array form
yiliang114 Sep 3, 2026
557fa66
fix(ci): keep the fleet verify diagnostics usable without sudo
yiliang114 Sep 3, 2026
4b4f265
fix(ci): capture the fleet qwen version tolerantly in verify
yiliang114 Sep 3, 2026
109ab64
test(ci): pin the fleet resolve budget against the job timeout
yiliang114 Sep 3, 2026
5622729
Merge branch 'main' into fix/ecs-runner-resolve-budget
wenshao Sep 4, 2026
b8de1c0
fix(ci): capture the fleet qwen version from stdout only
yiliang114 Sep 4, 2026
4aa5744
test(ci): assert the sudo probe class instead of today's verbs
yiliang114 Sep 4, 2026
6aab6c5
fix(ci): pick the ECS install mode by running it, not by probing sudo
yiliang114 Sep 5, 2026
9b3b664
fix(ci): try the sudoers-named argv as its own install mode
yiliang114 Sep 5, 2026
71ffce1
ci: record the ECS updater workflow's real size
yiliang114 Sep 5, 2026
9b9c5e0
Merge origin/main into fix/ecs-runner-resolve-budget
yiliang114 Sep 5, 2026
8a57856
fix(ci): retry a failed npm install in the same mode, not the next one
yiliang114 Sep 6, 2026
e372dda
Merge origin/main into fix/ecs-runner-resolve-budget
yiliang114 Sep 6, 2026
ba3c5a9
fix(ci): advance the install mode only on an identified sudo refusal
yiliang114 Sep 6, 2026
12a320b
fix(ci): require a sudo refusal to be the arm's whole story before ad…
yiliang114 Sep 6, 2026
a3d357f
Merge branch 'main' into fix/ecs-runner-resolve-budget
yiliang114 Sep 9, 2026
b526897
fix(ci): keep ECS resolver timeout change focused
yiliang114 Sep 9, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/scripts/update-ecs-runner-qwen-workflow.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,15 @@ describe('ECS runner qwen update workflow', () => {
);
});

it('pins the 90-minute resolve budget', () => {
const resolveJob = workflow.slice(
workflow.indexOf(' resolve:'),
workflow.indexOf(' update:'),
);
assert.ok(resolveJob.includes('timeout-minutes: 100'));
assert.ok(resolveJob.includes("RESOLVE_TIMEOUT_SECONDS: '5400'"));
});

it('runs only when this workflow changes on main', () => {
assert.ok(
workflow.includes(
Expand Down
13 changes: 6 additions & 7 deletions .github/workflows/update-ecs-runner-qwen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
name: 'Resolve version'
if: "${{ github.repository == 'QwenLM/qwen-code' }}"
runs-on: 'ubuntu-latest'
timeout-minutes: 30
timeout-minutes: 100
outputs:
version: '${{ steps.version.outputs.version }}'
steps:
Expand All @@ -36,12 +36,11 @@ jobs:
# npm publishes asynchronously: `npm publish --provenance` returns
# "Your package is being processed and may take a few minutes to
# become available", and release.yml dispatches this workflow as soon
# as it returns. For v0.22.3 the gap was ~16 minutes (published
# 17:14Z, resolvable 17:30Z), so the single un-retried `npm view` this
# step used to run 404'd on 3 of the 4 pools and left the fleet split
# across two CLI versions until a maintainer noticed. Wait the
# registry out rather than losing the race.
RESOLVE_TIMEOUT_SECONDS: '1500'
# as it returns. v0.23.0 took 55m22s to become resolvable, so the
# previous 25-minute budget expired while the package was still in
# flight. Wait up to 90 minutes and treat anything longer as an
# anomalous publish.
RESOLVE_TIMEOUT_SECONDS: '5400'
Comment thread
yiliang114 marked this conversation as resolved.
Comment thread
yiliang114 marked this conversation as resolved.
RESOLVE_INTERVAL_SECONDS: '30'
run: |-
set -euo pipefail
Expand Down
Loading