diff --git a/.github/workflows/ci-dispatch-group.yml b/.github/workflows/ci-dispatch-group.yml index 43ce2583bf4..db7c175ed9f 100644 --- a/.github/workflows/ci-dispatch-group.yml +++ b/.github/workflows/ci-dispatch-group.yml @@ -23,13 +23,22 @@ jobs: fail-fast: false matrix: include: ${{fromJSON(inputs.jobs)['standalone']}} - uses: ./.github/workflows/ci-dispatch-job.yml - with: - dispatch: ${{ matrix.dispatch }} - name: ${{ matrix.name }} - runner: ${{ matrix.runner }} - image: ${{ matrix.image }} - command: ${{ matrix.command }} + runs-on: ubuntu-latest + steps: + - name: Debug + run: | + echo "Standalone job: ${{ matrix.name }}" + echo "Dispatch: ${{ matrix.dispatch }}" + echo "Runner: ${{ matrix.runner }}" + echo "Image: ${{ matrix.image }}" + echo "Command: ${{ matrix.command }}" + # uses: ./.github/workflows/ci-dispatch-job.yml + # with: + # dispatch: ${{ matrix.dispatch }} + # name: ${{ matrix.name }} + # runner: ${{ matrix.runner }} + # image: ${{ matrix.image }} + # command: ${{ matrix.command }} two-stage-jobs: if: fromJSON(inputs.jobs)['two_stage'] @@ -40,7 +49,15 @@ jobs: fail-fast: false matrix: include: ${{fromJSON(inputs.jobs)['two_stage']}} - uses: ./.github/workflows/ci-dispatch-two-stage.yml - with: - producers: ${{ toJSON(matrix.producers) }} - consumers: ${{ toJSON(matrix.consumers) }} + runs-on: ubuntu-latest + steps: + - name: Debug + run: | + echo "producers:"" + echo "${{ matrix.producers }}" | jq '.' + echo "consumers:" + echo "${{ matrix.consumers }}" | jq '.' +# uses: ./.github/workflows/ci-dispatch-two-stage.yml +# with: +# producers: ${{ toJSON(matrix.producers) }} +# consumers: ${{ toJSON(matrix.consumers) }}