Add OrchestratorCI workflow configuration

This commit is contained in:
2025-09-22 13:05:04 +08:00
commit bb03ce42d4

22
.github/workflows/orchestratorci.yaml vendored Normal file
View File

@@ -0,0 +1,22 @@
name: OrchestratorCI
on:
workflow_call:
inputs:
spec:
required: true
type: string
default: "x86"
jobs:
main-job:
steps:
- name: Provisioning
run: |
echo "Provisioning with spec: ${{ inputs.spec }}"
post-job:
needs: main-job
if: always()
steps:
- name: Cleanup
run: echo "Cleaning up resources"