mirror of
https://github.com/game-ci/unity-builder.git
synced 2026-06-11 08:23:56 -07:00
fix(ci): update workflow references from loadEnterpriseServices to loadPluginServices
CI workflows still referenced the old function name after the rename. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -90,7 +90,7 @@ jobs:
|
||||
- name: Verify all services and lazy loaders
|
||||
run: |
|
||||
node -e "
|
||||
const { loadOrchestrator, loadEnterpriseServices } = require('./lib/model/orchestrator-plugin');
|
||||
const { loadOrchestrator, loadPluginServices } = require('./lib/model/orchestrator-plugin');
|
||||
(async () => {
|
||||
const orch = await loadOrchestrator();
|
||||
if (!orch || typeof orch.run !== 'function') {
|
||||
@@ -99,8 +99,8 @@ jobs:
|
||||
}
|
||||
console.log('✓ loadOrchestrator().run is a function');
|
||||
|
||||
const services = await loadEnterpriseServices();
|
||||
if (!services) { console.error('ERROR: loadEnterpriseServices failed'); process.exit(1); }
|
||||
const services = await loadPluginServices();
|
||||
if (!services) { console.error('ERROR: loadPluginServices failed'); process.exit(1); }
|
||||
|
||||
const eager = ['BuildReliabilityService','TestWorkflowService','HotRunnerService','OutputService','OutputTypeRegistry','ArtifactUploadHandler','IncrementalSyncService'];
|
||||
for (const s of eager) { if (!services[s]) { console.error('Missing: ' + s); process.exit(1); } }
|
||||
|
||||
Reference in New Issue
Block a user