|
|
@@ -1,5 +1,5 @@
|
|
|
#-------------------------------------------------------------------------------------------------------
|
|
|
-# Copyright (c) 2021 ChakraCore Project Contributors. All rights reserved.
|
|
|
+# 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.
|
|
|
#-------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
@@ -32,17 +32,32 @@ jobs:
|
|
|
strategy:
|
|
|
maxParallel: 6
|
|
|
matrix:
|
|
|
+ Linux.Debug:
|
|
|
+ image_name: 'ubuntu-22.04'
|
|
|
+ deps: 'sudo apt-get install -y ninja-build clang libicu-dev'
|
|
|
+ build_type: 'Debug'
|
|
|
+ libtype_flag: ''
|
|
|
Linux.NoJit:
|
|
|
- image_name: 'ubuntu-20.04'
|
|
|
+ image_name: 'ubuntu-22.04'
|
|
|
deps: 'sudo apt-get install -y ninja-build clang libicu-dev'
|
|
|
build_type: 'Debug'
|
|
|
libtype_flag: '-DDISABLE_JIT=ON'
|
|
|
Linux.ReleaseWithDebug:
|
|
|
- image_name: 'ubuntu-20.04'
|
|
|
+ image_name: 'ubuntu-22.04'
|
|
|
deps: 'sudo apt-get install -y ninja-build clang libicu-dev'
|
|
|
build_type: 'RelWithDebInfo'
|
|
|
libtype_flag: ''
|
|
|
Linux.Release:
|
|
|
+ image_name: 'ubuntu-22.04'
|
|
|
+ deps: 'sudo apt-get install -y ninja-build clang libicu-dev'
|
|
|
+ build_type: 'Release'
|
|
|
+ libtype_flag: ''
|
|
|
+ Ubuntu20.ReleaseWithDebug:
|
|
|
+ image_name: 'ubuntu-20.04'
|
|
|
+ deps: 'sudo apt-get install -y ninja-build clang libicu-dev'
|
|
|
+ build_type: 'RelWithDebInfo'
|
|
|
+ libtype_flag: ''
|
|
|
+ Ubuntu20.Release:
|
|
|
image_name: 'ubuntu-20.04'
|
|
|
deps: 'sudo apt-get install -y ninja-build clang libicu-dev'
|
|
|
build_type: 'Release'
|