File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -207,9 +207,11 @@ echo "modified_projects: $modified_projects"
207207if [ " ${RUNNER_OS} " = " Linux" ]; then
208208 projects_to_test=$( exclude-linux $( compute-projects-to-test ${modified_projects} ) )
209209elif [ " ${RUNNER_OS} " = " Windows" ]; then
210- projects_to_test=$( exclude-windows $( compute-projects-to-test ${modified_projects} ) )
210+ # Don't run dependent projects on Windows for now.
211+ projects_to_test=$( exclude-windows ${modified_projects} )
211212else
212213 echo " Unknown runner OS: $RUNNER_OS "
214+ exit 1
213215fi
214216check_targets=$( check-targets $( remove-unwanted-projects ${projects_to_test} ) | sort | uniq)
215217projects=$( remove-unwanted-projects $( add-dependencies ${projects_to_test} ) | sort | uniq)
Original file line number Diff line number Diff line change 3636 - name : Compute projects to test
3737 id : compute-projects
3838 uses : ./.github/workflows/compute-projects-to-test
39- with :
40- projects : clang llvm lld
4139
4240 - name : Configure LLVM
4341 shell : bash
Original file line number Diff line number Diff line change @@ -1379,3 +1379,5 @@ endif()
13791379if (LLVM_INCLUDE_UTILS AND LLVM_INCLUDE_TOOLS)
13801380 add_subdirectory (utils/llvm-locstats)
13811381endif ()
1382+
1383+ #foo
Original file line number Diff line number Diff line change @@ -285,3 +285,4 @@ endif()
285285if (MLIR_STANDALONE_BUILD)
286286 llvm_distribution_add_targets()
287287endif ()
288+ #foo
You can’t perform that action at this time.
0 commit comments