Skip to content

Commit

Permalink
#0: Added custom tags for BH Post commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ttmchiou committed Jan 22, 2025
1 parent 810edfa commit 375530a
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/blackhole-post-commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ name: "Blackhole post-commit tests"
on:
workflow_call:
workflow_dispatch:
inputs:
runner-label:
description: 'Optional: BH'
required: true
type: string
default: 'BH'
schedule:
- cron: "0 */2 * * *"
# Pause this since not enough runners to support every commit to main
Expand Down Expand Up @@ -44,14 +50,14 @@ jobs:
uses: ./.github/workflows/umd-unit-tests.yaml
with:
arch: blackhole
runner-label: BH
runner-label: ${{ inputs.runner-label }}
sd-unit-tests:
needs: build-artifact
uses: ./.github/workflows/build-and-unit-tests.yaml
secrets: inherit
with:
arch: blackhole
runner-label: BH
runner-label: ${{ inputs.runner-label }}
timeout: 30
os: "ubuntu-22.04"
fd-unit-tests:
Expand All @@ -60,7 +66,7 @@ jobs:
secrets: inherit
with:
arch: blackhole
runner-label: BH
runner-label: ${{ inputs.runner-label }}
os: "ubuntu-22.04"
# FD C++ Unit Tests
cpp-unit-tests:
Expand All @@ -69,7 +75,7 @@ jobs:
uses: ./.github/workflows/cpp-post-commit.yaml
with:
arch: blackhole
runner-label: BH
runner-label: ${{ inputs.runner-label }}
timeout: 60
os: "ubuntu-22.04"

Expand Down

0 comments on commit 375530a

Please sign in to comment.