File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 22name : GitHubPages
33
44on :
5+ pull_request :
56 push :
67 branches : ["main"]
78
2021 upload : true
2122
2223 DocsDeploy :
24+ if : false
2325 name : Deploy docs to GitHub Pages
2426 needs : DocsBuild
2527
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ permissions:
1717
1818jobs :
1919 CodeChecks :
20+ if : false
2021 uses : ./.github/workflows/reusable_checks.yml
2122 DocsBuild :
2223 uses : ./.github/workflows/reusable_docs_build.yml
Original file line number Diff line number Diff line change @@ -45,20 +45,19 @@ jobs:
4545 -DUMF_DISABLE_HWLOC=ON
4646 cmake --build build --target docs
4747
48- - name : Download benchmark HTML before uploading with documentation on GitHub pages
49- # If the benchmark results are meant to be uploaded on GH pages
50- if : ${{ inputs.upload == true }}
48+ # If we upload HTML docs, we want to include benchmark results as well
49+ - name : Download benchmark HTML before uploading docs
50+ # if: ${{ inputs.upload == true }}
5151 id : download-bench-html
5252 uses : actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
5353 with :
54- path : ${{github.workspace}}/build/benchmark_results.html
54+ path : ${{github.workspace}}/umf-repo/ build/benchmark_results.html
5555 key : benchmark-results-
5656
5757 - name : Move benchmark HTML
58- if : ${{ inputs.upload == true && steps.download-bench-html.outputs.cache-hit != '' }}
59- # exact or partial cache hit
58+ # if: ${{ inputs.upload == true && steps.download-bench-html.outputs.cache-hit != '' }}
6059 run : |
61- mv ${{ github.workspace }}/build/ benchmark_results.html ${{ github.workspace }}/build/docs_build/generated/html
60+ mv benchmark_results.html ${{github.workspace}}/build/docs_build/generated/html
6261
6362 - name : Upload artifact
6463 if : ${{ inputs.upload == true }}
You can’t perform that action at this time.
0 commit comments