File tree Expand file tree Collapse file tree 4 files changed +26
-1
lines changed Expand file tree Collapse file tree 4 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 39
39
strategy :
40
40
fail-fast : false
41
41
matrix :
42
- preset : [pybind, llm]
42
+ preset : [linux, pybind, llm]
43
43
runner : [linux.2xlarge, linux.arm64.2xlarge]
44
44
docker-image : [executorch-ubuntu-22.04-clang12, executorch-ubuntu-22.04-gcc11-aarch64]
45
45
# Excluding specific runner + docker image combinations that don't make sense:
Original file line number Diff line number Diff line change 57
57
"rhs" : " Darwin"
58
58
}
59
59
},
60
+ {
61
+ "name" : " linux" ,
62
+ "displayName" : " Build everything buildable on Linux" ,
63
+ "inherits" : [" common" ],
64
+ "cacheVariables" : {
65
+ "CMAKE_SYSTEM_NAME" : " Linux" ,
66
+ "EXECUTORCH_BUILD_PRESET_FILE" : " ${sourceDir}/tools/cmake/preset/linux.cmake"
67
+ },
68
+ "condition" : {
69
+ "lhs" : " ${hostSystemName}" ,
70
+ "type" : " equals" ,
71
+ "rhs" : " Linux"
72
+ }
73
+ },
60
74
{
61
75
"name" : " pybind" ,
62
76
"displayName" : " Build pybindings exported in the wheel" ,
Original file line number Diff line number Diff line change
1
+ # Copyright (c) Meta Platforms, Inc. and affiliates.
2
+ # All rights reserved.
3
+ #
4
+ # This source code is licensed under the BSD-style license found in the
5
+ # LICENSE file in the root directory of this source tree.
6
+
7
+ include (${PROJECT_SOURCE_DIR} /tools/cmake/preset/pybind.cmake )
8
+ include (${PROJECT_SOURCE_DIR} /tools/cmake/preset/llm.cmake )
9
+
10
+ set_overridable_option (EXECUTORCH_BUILD_EXECUTOR_RUNNER ON )
Original file line number Diff line number Diff line change 6
6
7
7
include (${PROJECT_SOURCE_DIR} /tools/cmake/preset/apple_common.cmake )
8
8
include (${PROJECT_SOURCE_DIR} /tools/cmake/preset/pybind.cmake )
9
+ include (${PROJECT_SOURCE_DIR} /tools/cmake/preset/llm.cmake )
9
10
10
11
set_overridable_option (EXECUTORCH_BUILD_EXECUTOR_RUNNER ON )
You can’t perform that action at this time.
0 commit comments