-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Build and test Debug, Test and Release Builds - Cirrus CI supports Apple Silicon - Not intended to replace Azure for other builds due to usage limits
- Loading branch information
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#------------------------------------------------------------------------------------------------------- | ||
# Copyright (c) ChakraCore Project Contributors. All rights reserved. | ||
# Licensed under the MIT license. See LICENSE.txt file in the project root for full license information. | ||
#------------------------------------------------------------------------------------------------------- | ||
|
||
task: | ||
name: CMake ARM64.macOS.Debug (noJit) | ||
macos_instance: | ||
image: ghcr.io/cirruslabs/macos-ventura-xcode | ||
Dependencies_script: brew install ninja icu4c && mkdir -p build | ||
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 .. | ||
Build_script: cd build && ninja | ||
Test_script: cd build && ninja check | ||
|
||
task: | ||
name: CMake ARM64.macOS.ReleaseWithDebug (noJit) | ||
macos_instance: | ||
image: ghcr.io/cirruslabs/macos-ventura-xcode | ||
Dependencies_script: brew install ninja icu4c && mkdir -p build | ||
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 .. | ||
Build_script: cd build && ninja | ||
Test_script: cd build && ninja check | ||
|
||
task: | ||
name: CMake ARM64.macOS.Release (noJit) | ||
macos_instance: | ||
image: ghcr.io/cirruslabs/macos-ventura-xcode | ||
Dependencies_script: brew install ninja icu4c && mkdir -p build | ||
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 .. | ||
Build_script: cd build && ninja | ||
Test_script: cd build && ninja check |