File tree 1 file changed +10
-1
lines changed
1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -499,6 +499,7 @@ jobs:
499
499
500
500
- name : Install Requirements
501
501
run : |
502
+ pip install --upgrade pip
502
503
cd BenchmarksCPP
503
504
pip install -r requirements.txt
504
505
@@ -556,6 +557,11 @@ jobs:
556
557
with :
557
558
submodules : recursive
558
559
560
+ - name : Install Python
561
+ uses : actions/setup-python@v2
562
+ with :
563
+ python-version : " 3.9"
564
+
559
565
- name : Download Intermediate Benchmark Results
560
566
uses : actions/download-artifact@v2
561
567
with :
@@ -564,7 +570,10 @@ jobs:
564
570
- name : Auto-Generate Benchmark Documentation
565
571
run : |
566
572
git clone https://github.com/LibRapid/BenchmarksCPP.git
567
- cd BenchmarksCPP/scripts
573
+ cd BenchmarksCPP
574
+ pip install --upgrade pip
575
+ pip install -r requirements.txt
576
+ cd scripts
568
577
python docGenerator.py --input ../../BECHMARK_RESULTS_TMP --output ../../BECHMARK_RESULTS
569
578
570
579
- name : Upload Benchmark Results
You can’t perform that action at this time.
0 commit comments