File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ # -------------------------------------------------------------------------------------------------------
2
+ # Copyright (c) ChakraCore Project Contributors. All rights reserved.
3
+ # Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
4
+ # -------------------------------------------------------------------------------------------------------
5
+
6
+ task :
7
+ name : CMake ARM64.macOS.Debug (noJit)
8
+ macos_instance :
9
+ image : ghcr.io/cirruslabs/macos-ventura-xcode
10
+ Dependencies_script : brew install ninja icu4c && mkdir -p build
11
+ CMake_script : cd build && cmake -GNinja -DCMAKE_BUILD_TYPE=Debug -DSTATIC_LIBRARY=ON -DICU_INCLUDE_PATH=/opt/homebrew/opt/icu4c/include -DDISABLE_JIT=ON -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang ..
12
+ Build_script : cd build && ninja
13
+ Test_script : cd build && ninja check
14
+
15
+ task :
16
+ name : CMake ARM64.macOS.ReleaseWithDebug (noJit)
17
+ macos_instance :
18
+ image : ghcr.io/cirruslabs/macos-ventura-xcode
19
+ Dependencies_script : brew install ninja icu4c && mkdir -p build
20
+ CMake_script : cd build && cmake -GNinja -DCMAKE_BUILD_TYPE=RelWithDebInfo -DICU_INCLUDE_PATH=/opt/homebrew/opt/icu4c/include -DDISABLE_JIT=ON -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang ..
21
+ Build_script : cd build && ninja
22
+ Test_script : cd build && ninja check
23
+
24
+ task :
25
+ name : CMake ARM64.macOS.Release (noJit)
26
+ macos_instance :
27
+ image : ghcr.io/cirruslabs/macos-ventura-xcode
28
+ Dependencies_script : brew install ninja icu4c && mkdir -p build
29
+ CMake_script : cd build && cmake -GNinja -DCMAKE_BUILD_TYPE=Release -DSTATIC_LIBRARY=ON -DICU_INCLUDE_PATH=/opt/homebrew/opt/icu4c/include -DDISABLE_JIT=ON -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang ..
30
+ Build_script : cd build && ninja
31
+ Test_script : cd build && ninja check
You can’t perform that action at this time.
0 commit comments