Merge remote-tracking branch 'origin/master' into fix/agc-manifest-revision-cas
This commit is contained in:
@@ -321,4 +321,26 @@ describe('project CI workflow', () => {
|
||||
expect(nativeJob).toContain('server-rs/Cargo.toml');
|
||||
expect(nativeJob).toContain('cargo fetch --locked');
|
||||
});
|
||||
|
||||
it('prefetches the excluded standalone Rust crates before the native shell gates', () => {
|
||||
const standaloneStep = stepSection(
|
||||
'native-shell-tests',
|
||||
'Prepare standalone Rust crate dependencies',
|
||||
);
|
||||
for (const manifest of [
|
||||
'server-rs/crates/agent-runtime-core/Cargo.toml',
|
||||
'server-rs/crates/agent-runtime-orchestration/Cargo.toml',
|
||||
]) {
|
||||
expect(standaloneStep).toContain(manifest);
|
||||
}
|
||||
// 这两个 crate 没有提交 Cargo.lock,只能用不带 --locked 的 fetch:
|
||||
// 带 --locked 会因为缺少锁文件直接失败。
|
||||
expect(standaloneStep).toContain('cargo fetch \\');
|
||||
expect(standaloneStep).not.toContain('cargo fetch --locked');
|
||||
|
||||
const nativeJob = jobSection('native-shell-tests');
|
||||
expect(
|
||||
nativeJob.indexOf('Prepare standalone Rust crate dependencies'),
|
||||
).toBeLessThan(nativeJob.indexOf('run: npm run check:native-shells'));
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user