feat: add OrchestratorCI workflow

This commit is contained in:
2025-09-22 13:32:00 +08:00
parent 64a9b53ba2
commit f40759c2ad

24
.github/workflows/orchestratorci.yml vendored Normal file
View File

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