File tree 2 files changed +9
-1
lines changed
2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -14,15 +14,23 @@ jobs:
14
14
include :
15
15
- os : " ubuntu-20.04"
16
16
shell : " bash"
17
+ LLVM_TARGETS_TO_BUILD : " X86"
17
18
- os : " macos-13"
18
19
shell : " bash"
20
+ LLVM_TARGETS_TO_BUILD : " X86"
21
+ - os : " macos-14"
22
+ shell : " bash"
23
+ LLVM_TARGETS_TO_BUILD : " AArch64"
19
24
- os : " windows-2022"
20
25
shell : " msys2 {0}"
26
+ LLVM_TARGETS_TO_BUILD : " X86"
21
27
permissions :
22
28
contents : write
23
29
defaults :
24
30
run :
25
31
shell : ${{ matrix.shell }}
32
+ env :
33
+ LLVM_TARGETS_TO_BUILD : ${{ matrix.LLVM_TARGETS_TO_BUILD }}
26
34
steps :
27
35
- uses : spatial-model-editor/setup-ci@v1
28
36
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ cmake -GNinja .. \
47
47
-DLLVM_DEFAULT_TARGET_TRIPLE=$TARGET_TRIPLE \
48
48
-DCMAKE_OSX_DEPLOYMENT_TARGET=$MACOSX_DEPLOYMENT_TARGET \
49
49
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
50
- -DLLVM_TARGETS_TO_BUILD=" X86 " \
50
+ -DLLVM_TARGETS_TO_BUILD=" $LLVM_TARGETS_TO_BUILD " \
51
51
-DLLVM_BUILD_TOOLS=OFF \
52
52
-DLLVM_INCLUDE_TOOLS=OFF \
53
53
-DLLVM_BUILD_EXAMPLES=OFF \
You can’t perform that action at this time.
0 commit comments