File tree Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Expand file tree Collapse file tree 2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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.
44name : Benchmarks
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:
2827env :
2928 UMF_DIR : " ${{github.workspace}}/umf-repo"
3029 BUILD_DIR : " ${{github.workspace}}/umf-repo/build"
31- # INSTL_DIR : "${{github.workspace}}/../install-dir"
3230
3331jobs :
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 : |
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
You can’t perform that action at this time.
0 commit comments