Skip to content

Commit

Permalink
Added dummy workflows to get ones to be executable from a branch (#340)
Browse files Browse the repository at this point in the history
  • Loading branch information
stanbrub committed Sep 12, 2024
1 parent 2a1d7aa commit 34f8e32
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/adhoc-auto-remote-benchmarks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

name: Adhoc Benchmarks (Auto-provisioned Server)

on:
workflow_dispatch:
inputs:
message:
message: 'Message'
required: true
default: ''
type: string

jobs:
hello-world:
runs-on: ubuntu-22.04
steps:
- name: Print Message
run: echo "Hello ${{ inputs.message }}"

21 changes: 21 additions & 0 deletions .github/workflows/adhoc-exist-remote-benchmarks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Run benchmarks on an already provisioned system
# - Calls the reusable worflow remote-benchmarks.yml to run and upload benchmarks
# - Runs the given options with the given image/branch

name: Adhoc Benchmarks (Existing Server)

on:
workflow_dispatch:
inputs:
message:
message: 'Message'
required: true
default: ''
type: string

jobs:
hello-world:
runs-on: ubuntu-22.04
steps:
- name: Print Message
run: echo "Hello ${{ inputs.message }}"

0 comments on commit 34f8e32

Please sign in to comment.