commit bb03ce42d4b9ad7bdf3aceef6469011727f998c9 Author: pande Date: Mon Sep 22 13:05:04 2025 +0800 Add OrchestratorCI workflow configuration diff --git a/.github/workflows/orchestratorci.yaml b/.github/workflows/orchestratorci.yaml new file mode 100644 index 0000000..85d4e27 --- /dev/null +++ b/.github/workflows/orchestratorci.yaml @@ -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" \ No newline at end of file