File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 34
34
benchmarks :
35
35
name : Benchmarks
36
36
# run only on upstream; forks will not have the HW
37
- if : github.repository == 'oneapi-src/unified-memory-framework'
38
- runs-on : ${{ inputs.runner }}
37
+ runs-on : ubuntu-latest
39
38
permissions :
40
39
contents : write
41
40
pull-requests : write
@@ -57,16 +56,16 @@ jobs:
57
56
with :
58
57
script : |
59
58
const pr_no = '${{ inputs.pr_no }}';
60
- const url = ' ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}' ;
61
- const params = ' ${{ env.bench_params }}' ;
59
+ const url = ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }};
60
+ const params = ${{ env.bench_params }}.replace(/'/g, "") ;
62
61
const body = `Compute Benchmarks run (with params: ${params}):\n${url}`;
63
62
64
63
github.rest.issues.createComment({
65
64
issue_number: pr_no,
66
65
owner: context.repo.owner,
67
66
repo: context.repo.repo,
68
67
body: body
69
- })
68
+ });
70
69
71
70
- name : Checkout UMF
72
71
uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
@@ -195,6 +194,7 @@ jobs:
195
194
})
196
195
197
196
- name : Commit data.json and results directory
197
+ if : false
198
198
working-directory : results-repo
199
199
run : |
200
200
git config --global user.name "GitHub Actions Bot"
You can’t perform that action at this time.
0 commit comments