diff --git a/.github/workflows/adhoc-auto-remote-benchmarks.yml b/.github/workflows/adhoc-auto-remote-benchmarks.yml new file mode 100644 index 0000000..eb2b685 --- /dev/null +++ b/.github/workflows/adhoc-auto-remote-benchmarks.yml @@ -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 }}" + diff --git a/.github/workflows/adhoc-exist-remote-benchmarks.yml b/.github/workflows/adhoc-exist-remote-benchmarks.yml new file mode 100644 index 0000000..7a962a3 --- /dev/null +++ b/.github/workflows/adhoc-exist-remote-benchmarks.yml @@ -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 }}"