Skip to content

Commit 49498d8

Browse files
cleanup
1 parent 7cc9b5b commit 49498d8

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/workflows/benchmarks.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ on:
2222
pr_no:
2323
description: PR number (if 0, it'll run on the main)
2424
type: number
25-
# required: true
2625
bench_script_params:
2726
description: Parameters passed to script executing benchmark
2827
type: string

.github/workflows/reusable_benchmarks.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Executes benchmarks implemented in this repository,
1+
# Executes benchmarks implemented in this repository
22
# using scripts for benchmark results visualisation,
33
# which are downloaded from Unified Runtime repository.
44
name: Benchmarks
@@ -7,7 +7,6 @@ on:
77
workflow_call:
88
inputs:
99
pr_no:
10-
# required: true
1110
# even though this is a number, this is a workaround for issues with
1211
# reusable workflow calls that result in "Unexpected value '0'" error.
1312
type: string
@@ -28,7 +27,6 @@ permissions:
2827
env:
2928
UMF_DIR: "${{github.workspace}}/umf-repo"
3029
BUILD_DIR : "${{github.workspace}}/umf-repo/build"
31-
# INSTL_DIR : "${{github.workspace}}/../install-dir"
3230

3331
jobs:
3432
benchmarks:
@@ -67,13 +65,13 @@ jobs:
6765
- name: Checkout UMF
6866
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
6967
with:
70-
path: umf-repo #${{env.UMF_DIR}} #umf-repo
68+
path: ${{env.UMF_DIR}}
7169
fetch-depth: 0
7270

7371
# We need to fetch special ref for proper PR's merge commit. Note, this ref may be absent if the PR is already merged.
7472
- name: Fetch PR's merge commit
7573
if: ${{ inputs.pr_no != 0 }}
76-
working-directory: ${{github.workspace}}/umf-repo #${{env.UMF_DIR}} # ${{github.workspace}}/umf-repo
74+
working-directory: ${{env.UMF_DIR}}
7775
env:
7876
PR_NO: ${{ inputs.pr_no }}
7977
run: |
@@ -86,7 +84,6 @@ jobs:
8684
sudo apt-get update
8785
sudo apt-get install -y cmake libhwloc-dev libnuma-dev libtbb-dev
8886
89-
# -DCMAKE_INSTALL_PREFIX="${{env.INSTL_DIR}}"
9087
- name: Configure build
9188
run: >
9289
cmake

0 commit comments

Comments
 (0)