@@ -51,7 +51,6 @@ class Outputs:
5151 run_ci_fuzz : bool = False
5252 run_docs : bool = False
5353 run_tests : bool = False
54- run_windows_msi : bool = False
5554 run_windows_tests : bool = False
5655
5756
@@ -79,9 +78,6 @@ def compute_changes() -> None:
7978 if outputs .run_docs :
8079 print ("Build documentation" )
8180
82- if outputs .run_windows_msi :
83- print ("Build Windows MSI" )
84-
8581 print (outputs )
8682
8783 write_github_output (outputs )
@@ -116,7 +112,6 @@ def process_changed_files(changed_files: Set[Path]) -> Outputs:
116112 run_ci_fuzz = False
117113 run_docs = False
118114 run_windows_tests = False
119- run_windows_msi = False
120115
121116 for file in changed_files :
122117 # Documentation files
@@ -128,8 +123,6 @@ def process_changed_files(changed_files: Set[Path]) -> Outputs:
128123 run_tests = run_ci_fuzz = True
129124 if file .name == "reusable-docs.yml" :
130125 run_docs = True
131- if file .name == "reusable-windows-msi.yml" :
132- run_windows_msi = True
133126
134127 if not (
135128 doc_file
@@ -155,16 +148,11 @@ def process_changed_files(changed_files: Set[Path]) -> Outputs:
155148 if doc_file :
156149 run_docs = True
157150
158- # Check for changed MSI installer-related files
159- if file .parts [:2 ] == ("Tools" , "msi" ):
160- run_windows_msi = True
161-
162151 return Outputs (
163152 run_ci_fuzz = run_ci_fuzz ,
164153 run_docs = run_docs ,
165154 run_tests = run_tests ,
166155 run_windows_tests = run_windows_tests ,
167- run_windows_msi = run_windows_msi ,
168156 )
169157
170158
@@ -178,7 +166,6 @@ def process_target_branch(outputs: Outputs, git_branch: str) -> Outputs:
178166
179167 if os .environ .get ("GITHUB_EVENT_NAME" , "" ).lower () == "workflow_dispatch" :
180168 outputs .run_docs = True
181- outputs .run_windows_msi = True
182169
183170 return outputs
184171
@@ -195,7 +182,6 @@ def write_github_output(outputs: Outputs) -> None:
195182 f .write (f"run-docs={ bool_lower (outputs .run_docs )} \n " )
196183 f .write (f"run-tests={ bool_lower (outputs .run_tests )} \n " )
197184 f .write (f"run-windows-tests={ bool_lower (outputs .run_windows_tests )} \n " )
198- f .write (f"run-windows-msi={ bool_lower (outputs .run_windows_msi )} \n " )
199185
200186
201187def bool_lower (value : bool , / ) -> str :
0 commit comments