Skip to content

Commit b067309

Browse files
committed
Change artifact names
1 parent 73aaeb4 commit b067309

File tree

6 files changed

+13
-12
lines changed

6 files changed

+13
-12
lines changed

.github/workflows/csv-coverage-timeseries.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ jobs:
3636
- name: Upload timeseries CSV
3737
uses: actions/upload-artifact@v2
3838
with:
39-
name: csv-flow-model-coverage-timeseries
40-
path: timeseries-*.csv
39+
name: framework-coverage-timeseries
40+
path: framework-coverage-timeseries-*.csv
4141

.github/workflows/csv-coverage.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ jobs:
4747
- name: Upload CSV package list
4848
uses: actions/upload-artifact@v2
4949
with:
50-
name: csv-flow-model-coverage
51-
path: flow-model-coverage-*.csv
50+
name: framework-coverage-csv
51+
path: framework-coverage-*.csv
5252
- name: Upload RST package list
5353
uses: actions/upload-artifact@v2
5454
with:
55-
name: rst-flow-model-coverage
56-
path: flow-model-coverage-*.rst
55+
name: framework-coverage-rst
56+
path: framework-coverage-*.rst
5757

File renamed without changes.

misc/scripts/library-coverage/generate-timeseries.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,10 @@ def get_packages(lang, query):
7474

7575
# todo: change this when we cover multiple languages. We should compute the SHAs
7676
# only once and not per language
77+
output_prefix = "framework-coverage-timeseries-"
7778
for config in configs:
78-
with open("timeseries-" + config.lang + ".csv", 'w', newline='') as csvfile_total:
79-
with open("timeseries-" + config.lang + "-packages.csv", 'w', newline='') as csvfile_packages:
79+
with open(output_prefix + config.lang + ".csv", 'w', newline='') as csvfile_total:
80+
with open(output_prefix + config.lang + "-packages.csv", 'w', newline='') as csvfile_packages:
8081
csvwriter_total = csv.writer(csvfile_total)
8182
csvwriter_packages = csv.writer(csvfile_packages)
8283
csvwriter_total.writerow(

misc/scripts/library-coverage/settings.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import sys
22

3-
generated_output_rst = "flow-model-coverage-{language}.rst"
4-
generated_output_csv = "flow-model-coverage-{language}.csv"
3+
generated_output_rst = "framework-coverage-{language}.rst"
4+
generated_output_csv = "framework-coverage-{language}.csv"
55

66
# The CI job checks out the codebase to a subfolder
77
data_prefix = ""
@@ -16,7 +16,7 @@
1616
documentation_folder_no_prefix = "{language}/documentation/library-coverage/"
1717
documentation_folder = data_prefix + documentation_folder_no_prefix
1818

19-
output_rst_file_name = "flow-model-coverage.rst"
20-
output_csv_file_name = "flow-model-coverage.csv"
19+
output_rst_file_name = "coverage.rst"
20+
output_csv_file_name = "coverage.csv"
2121
repo_output_rst = documentation_folder + output_rst_file_name
2222
repo_output_csv = documentation_folder + output_csv_file_name

0 commit comments

Comments
 (0)