Skip to content

Commit 3b80ace

Browse files
fix
Created using spr 1.3.6
1 parent 7cab581 commit 3b80ace

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.ci/generate_test_report_lib.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,5 @@ def plural(num_tests):
253253

254254
def generate_report_from_files(title, return_code, junit_files):
255255
return generate_report(
256-
title,
257-
return_code,
258-
[JUnitXml.fromfile(p) for p in junit_files],
256+
title, return_code, [JUnitXml.fromfile(p) for p in junit_files], []
259257
)

.github/workflows/premerge.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,12 @@ jobs:
7070
export SCCACHE_IDLE_TIMEOUT=0
7171
sccache --start-server
7272
73+
export projects_to_build=polly
74+
export project_check_targets=check-polly
75+
export runtimes_to_build=""
76+
export runtimes_check_targets=""
77+
export runtimes_check_targets_needs_reconfig=""
78+
7379
./.ci/monolithic-linux.sh "${projects_to_build}" "${project_check_targets}" "${runtimes_to_build}" "${runtimes_check_targets}" "${runtimes_check_targets_needs_reconfig}" "${enable_cir}"
7480
- name: Upload Artifacts
7581
if: '!cancelled()'
@@ -106,6 +112,9 @@ jobs:
106112
echo "Building projects: ${projects_to_build}"
107113
echo "Running project checks targets: ${project_check_targets}"
108114
115+
export projects_to_build=polly
116+
export project_check_targets=check-polly
117+
109118
echo "windows-projects=${projects_to_build}" >> $GITHUB_OUTPUT
110119
echo "windows-check-targets=${project_check_targets}" >> $GITHUB_OUTPUT
111120
- name: Build and Test

0 commit comments

Comments
 (0)