@@ -550,7 +550,6 @@ jobs:
550
550
name : Upload Benchmark Results
551
551
needs : run-benchmarks
552
552
runs-on : ubuntu-latest
553
- if : github.event_name != 'pull_request'
554
553
steps :
555
554
- name : Checkout LibRapid
556
555
uses : actions/checkout@v3
@@ -565,11 +564,11 @@ jobs:
565
564
- name : Download Intermediate Benchmark Results
566
565
uses : actions/download-artifact@v2
567
566
with :
568
- path : BECHMARK_RESULTS_TMP
567
+ path : IntermediateBenchmarkResults
569
568
570
- - name : Tree Benchmark Results
569
+ - name : Tree IntermediateBenchmarkResults
571
570
run : |
572
- cd BECHMARK_RESULTS_TMP
571
+ cd IntermediateBenchmarkResults
573
572
tree
574
573
575
574
- name : Auto-Generate Benchmark Documentation
@@ -579,24 +578,24 @@ jobs:
579
578
pip install --upgrade pip
580
579
pip install -r requirements.txt
581
580
cd scripts
582
- python docGenerator.py --input ../../BECHMARK_RESULTS_TMP --output ../../BECHMARK_RESULTS
581
+ python docGenerator.py --input ../../IntermediateBenchmarkResults --output ../../BenchmarkDocumentation
583
582
584
- - name : Tree Benchmark Results
583
+ - name : Tree BenchmarkDocumentation
585
584
run : |
586
- cd BECHMARK_RESULTS
585
+ cd BenchmarkDocumentation
587
586
tree
588
587
589
- - name : Upload Benchmark Results
588
+ - name : Upload Intermediate Benchmark Results
590
589
uses : actions/upload-artifact@v3
591
590
with :
592
- name : Benchmark Results
593
- path : BECHMARK_RESULTS_TMP
591
+ name : IntermediateBenchmarkResults
592
+ path : IntermediateBenchmarkResults
594
593
595
594
- name : Upload Benchmark Documentation
596
595
uses : actions/upload-artifact@v3
597
596
with :
598
597
name : LibRapid_Benchmark_SHA_${{ github.sha }}
599
- path : BECHMARK_RESULTS
598
+ path : BenchmarkDocumentation
600
599
601
600
quodona :
602
601
name : Run Qodana
0 commit comments