Skip to content

Commit

Permalink
Update master.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
abadams authored Jan 26, 2024
1 parent ede73d6 commit 7a2f8db
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions master/master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -1646,6 +1646,10 @@ def add_halide_cmake_test_steps(factory, builder_type):
want_hannk = (builder_type.has_tflite() and not halide_target.startswith("wasm-"))
apps_cmake_defs['ENABLE_APPS_HANNK'] = 'ON' if want_hannk else 'OFF'

# apps/c_backend has some sort of weird file system race condition when invoked on the build bots on windows
if 'windows' in halide_target:
apps_cmake_defs['ENABLE_APPS_C_BACKEND'] = 'OFF'

factory.addStep(
CMake(name='Configure apps for %s' % desc,
description='Configure apps for %s' % desc,
Expand Down

0 comments on commit 7a2f8db

Please sign in to comment.