Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
alliepiper committed Jun 3, 2024
1 parent 73079e9 commit 8cd31a8
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 131 deletions.
2 changes: 2 additions & 0 deletions .github/actions/workflow-run-job-linux/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ inputs:
runs:
using: "composite"
steps:
# TODO We currently require a checkout to the default path before invoking this action.
# Clean this up so we only do a single checkout.
- name: Checkout repo
uses: actions/checkout@v3
with:
Expand Down
15 changes: 10 additions & 5 deletions .github/workflows/ci-workflow-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,22 +60,27 @@ jobs:
${{ env.pr_worflow }}
${{ env.nightly_workflow }}
run-workflow:
name: Run workflow
dispatch-groups-linux-two-stage:
name: ${{ matrix.name }}
needs: build-workflow
permissions:
id-token: write
contents: read
uses: ./.github/workflows/workflow-dispatch.yml
strategy:
fail-fast: false
matrix:
name: ${{ fromJSON(needs.build-workflow.outputs.workflow)['linux_two_stage']['keys'] }}
uses: ./.github/workflows/workflow-dispatch-two-stage-group-linux.yml
with:
workflow: ${{ needs.build-workflow.outputs.workflow }}
name: ${{ matrix.name }}
pc-array: ${{ toJSON(fromJSON(needs.build-workflow.outputs.workflow)['linux_two_stage']['jobs'][matrix.name]) }}

verify-workflow:
name: Verify and summarize workflow results
if: ${{ always() && !cancelled() }}
needs:
- build-workflow
- run-workflow
- dispatch-groups-linux-two-stage
permissions:
contents: read
pull-requests: write # Posts a comment back to the PR.
Expand Down
51 changes: 0 additions & 51 deletions .github/workflows/workflow-dispatch-job-array-linux.yml

This file was deleted.

49 changes: 0 additions & 49 deletions .github/workflows/workflow-dispatch-job-single-linux.yml

This file was deleted.

8 changes: 8 additions & 0 deletions .github/workflows/workflow-dispatch-two-stage-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ jobs:
env:
NVIDIA_VISIBLE_DEVICES: ${{ env.NVIDIA_VISIBLE_DEVICES }}
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Run job
uses: ./.github/actions/workflow-run-job-linux.yml
with:
Expand Down Expand Up @@ -62,6 +66,10 @@ jobs:
env:
NVIDIA_VISIBLE_DEVICES: ${{ env.NVIDIA_VISIBLE_DEVICES }}
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Run job
uses: ./.github/actions/workflow-run-job-linux.yml
with:
Expand Down
26 changes: 0 additions & 26 deletions .github/workflows/workflow-dispatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,29 +12,3 @@ on:
required: true

jobs:
dispatch-groups-linux-two-stage:
if: ${{ fromJSON(inputs.workflow)['linux_two_stage']['keys'] }}
name: ${{ matrix.name }}
permissions:
id-token: write
contents: read
strategy:
fail-fast: false
matrix:
include: ${{ fromJSON(inputs.workflow)['linux_two_stage']['keys'] }}
uses: ./.github/workflows/workflow-dispatch-two-stage-group-linux.yml
with:
name: ${{ matrix.name }}
pc-array: ${{ toJSON(fromJSON(inputs.workflow)['linux_two_stage']['jobs'][matrix.name]) }}

debug-workflow:
name: "Debug workflow-dispatch.yml"
runs-on: ubuntu-latest
steps:
- name: Debug
run: |
echo "Debugging workflow:"
echo "Workflow:\n ${{inputs.workflow }}\n\n"
# echo "Linux Two Stage:\n${{ fromJSON(inputs.workflow)['linux_two_stage'] }}\n\n"
# echo "Keys:\n${{ fromJSON(inputs.workflow)['linux_two_stage']['keys'] }}\n\n"
# echo "Jobs:\n${{ fromJSON(inputs.workflow)['linux_two_stage']['jobs'] }}\n\n"

0 comments on commit 8cd31a8

Please sign in to comment.