Skip to content

Commit 422c69d

Browse files
committed
UNDERSCORES!
1 parent 7489335 commit 422c69d

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

.github/workflows/continuous-integration.yaml

+10-11
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,6 @@ jobs:
550550
name: Upload Benchmark Results
551551
needs: run-benchmarks
552552
runs-on: ubuntu-latest
553-
if: github.event_name != 'pull_request'
554553
steps:
555554
- name: Checkout LibRapid
556555
uses: actions/checkout@v3
@@ -565,11 +564,11 @@ jobs:
565564
- name: Download Intermediate Benchmark Results
566565
uses: actions/download-artifact@v2
567566
with:
568-
path: BECHMARK_RESULTS_TMP
567+
path: IntermediateBenchmarkResults
569568

570-
- name: Tree Benchmark Results
569+
- name: Tree IntermediateBenchmarkResults
571570
run: |
572-
cd BECHMARK_RESULTS_TMP
571+
cd IntermediateBenchmarkResults
573572
tree
574573
575574
- name: Auto-Generate Benchmark Documentation
@@ -579,24 +578,24 @@ jobs:
579578
pip install --upgrade pip
580579
pip install -r requirements.txt
581580
cd scripts
582-
python docGenerator.py --input ../../BECHMARK_RESULTS_TMP --output ../../BECHMARK_RESULTS
581+
python docGenerator.py --input ../../IntermediateBenchmarkResults --output ../../BenchmarkDocumentation
583582
584-
- name: Tree Benchmark Results
583+
- name: Tree BenchmarkDocumentation
585584
run: |
586-
cd BECHMARK_RESULTS
585+
cd BenchmarkDocumentation
587586
tree
588587
589-
- name: Upload Benchmark Results
588+
- name: Upload Intermediate Benchmark Results
590589
uses: actions/upload-artifact@v3
591590
with:
592-
name: Benchmark Results
593-
path: BECHMARK_RESULTS_TMP
591+
name: IntermediateBenchmarkResults
592+
path: IntermediateBenchmarkResults
594593

595594
- name: Upload Benchmark Documentation
596595
uses: actions/upload-artifact@v3
597596
with:
598597
name: LibRapid_Benchmark_SHA_${{ github.sha }}
599-
path: BECHMARK_RESULTS
598+
path: BenchmarkDocumentation
600599

601600
quodona:
602601
name: Run Qodana

0 commit comments

Comments
 (0)