Unverified Commit 94830abe authored by Chris Austen's avatar Chris Austen Committed by GitHub
Browse files

Enable performance repos to be swapped (#1589)

Enable multiple orgs for testing
parent d1b5f332
...@@ -16,6 +16,10 @@ on: ...@@ -16,6 +16,10 @@ on:
description: Repository for history results between dates description: Repository for history results between dates
required: true required: true
default: 'ROCmSoftwarePlatform/migraphx-reports' default: 'ROCmSoftwarePlatform/migraphx-reports'
benchmark_utils_repo:
description: Repository where benchmark utils are stored
required: true
default: "ROCmSoftwarePlatform/migraphx-benchmark-utils"
jobs: jobs:
release: release:
...@@ -24,6 +28,7 @@ jobs: ...@@ -24,6 +28,7 @@ jobs:
start_date: ${{ github.event.inputs.start_date || 'yyyy-mm-dd' }} start_date: ${{ github.event.inputs.start_date || 'yyyy-mm-dd' }}
end_date: ${{ github.event.inputs.end_date || 'yyyy-mm-dd' }} end_date: ${{ github.event.inputs.end_date || 'yyyy-mm-dd' }}
history_repo: ${{ github.event.inputs.history_repo || 'ROCmSoftwarePlatform/migraphx-reports' }} history_repo: ${{ github.event.inputs.history_repo || 'ROCmSoftwarePlatform/migraphx-reports' }}
benchmark_utils_repo: ${{ github.event.inputs.benchmark_utils_repo || 'ROCmSoftwarePlatform/migraphx-benchmark-utils' }}
secrets: secrets:
gh_token: ${{ secrets.MIGRAPHX_BOT_TOKEN }} gh_token: ${{ secrets.MIGRAPHX_BOT_TOKEN }}
mail_user: ${{ secrets.MAIL_USERNAME }} mail_user: ${{ secrets.MAIL_USERNAME }}
......
...@@ -14,9 +14,17 @@ on: ...@@ -14,9 +14,17 @@ on:
required: true required: true
default: '5.4.2' default: '5.4.2'
performance_reports_repo: performance_reports_repo:
description: Result repository description: Repository where performance reports are stored
required: true required: true
default: 'ROCmSoftwarePlatform/migraphx-reports' default: 'ROCmSoftwarePlatform/migraphx-reports'
benchmark_utils_repo:
description: Repository where benchmark utils are stored
required: true
default: "ROCmSoftwarePlatform/migraphx-benchmark-utils"
organization:
description: Organization based on which location of files will be different
required: true
default: "AMD"
result_number: result_number:
description: Last N results description: Last N results
required: true required: true
...@@ -36,6 +44,8 @@ jobs: ...@@ -36,6 +44,8 @@ jobs:
result_number: ${{ github.event.inputs.result_number || '10' }} result_number: ${{ github.event.inputs.result_number || '10' }}
flags: ${{ github.event.inputs.flags || '-r' }} flags: ${{ github.event.inputs.flags || '-r' }}
performance_reports_repo: ${{ github.event.inputs.performance_reports_repo || 'ROCmSoftwarePlatform/migraphx-reports' }} performance_reports_repo: ${{ github.event.inputs.performance_reports_repo || 'ROCmSoftwarePlatform/migraphx-reports' }}
benchmark_utils_repo: ${{ github.event.inputs.benchmark_utils_repo || 'ROCmSoftwarePlatform/migraphx-benchmark-utils' }}
organization: ${{ github.event.inputs.organization || 'AMD' }}
secrets: secrets:
gh_token: ${{ secrets.MIGRAPHX_BOT_TOKEN }} gh_token: ${{ secrets.MIGRAPHX_BOT_TOKEN }}
mail_user: ${{ secrets.MAIL_USERNAME }} mail_user: ${{ secrets.MAIL_USERNAME }}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment