File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ jobs:
109
109
strategy :
110
110
fail-fast : false
111
111
matrix :
112
- preset : [windows] # TODO (gjcomer) Re-enable pybind once functional
112
+ preset : [pybind, windows]
113
113
with :
114
114
job-name : build
115
115
ref : ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
@@ -127,7 +127,7 @@ jobs:
127
127
conda activate et
128
128
129
129
python install_requirements.py
130
- cmake --preset ${{ matrix.preset }}
130
+ cmake --preset ${{ matrix.preset }} -T ClangCL
131
131
if (\$LASTEXITCODE -ne 0) {
132
132
Write-Host "CMake configuration was unsuccessful. Exit code: \$LASTEXITCODE."
133
133
exit \$LASTEXITCODE
Original file line number Diff line number Diff line change @@ -25,8 +25,10 @@ set_overridable_option(EXECUTORCH_BUILD_EXTENSION_TRAINING ON)
25
25
26
26
if (CMAKE_SYSTEM_NAME STREQUAL "Darwin" )
27
27
set_overridable_option(EXECUTORCH_BUILD_COREML ON )
28
+ set_overridable_option(EXECUTORCH_BUILD_EXTENSION_TRAINING ON )
28
29
elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux" )
29
30
set_overridable_option(EXECUTORCH_BUILD_COREML ON )
31
+ set_overridable_option(EXECUTORCH_BUILD_EXTENSION_TRAINING ON )
30
32
elseif (CMAKE_SYSTEM_NAME STREQUAL "Windows" OR CMAKE_SYSTEM_NAME STREQUAL
31
33
"WIN32"
32
34
)
You can’t perform that action at this time.
0 commit comments