|
1 | 1 | #-------------------------------------------------------------------------------------------------------
|
2 |
| -# Copyright (c) 2021 ChakraCore Project Contributors. All rights reserved. |
| 2 | +# Copyright (c) ChakraCore Project Contributors. All rights reserved. |
3 | 3 | # Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
|
4 | 4 | #-------------------------------------------------------------------------------------------------------
|
5 | 5 |
|
@@ -32,17 +32,32 @@ jobs:
|
32 | 32 | strategy:
|
33 | 33 | maxParallel: 6
|
34 | 34 | matrix:
|
| 35 | + Linux.Debug: |
| 36 | + image_name: 'ubuntu-22.04' |
| 37 | + deps: 'sudo apt-get install -y ninja-build clang libicu-dev' |
| 38 | + build_type: 'Debug' |
| 39 | + libtype_flag: '' |
35 | 40 | Linux.NoJit:
|
36 |
| - image_name: 'ubuntu-20.04' |
| 41 | + image_name: 'ubuntu-22.04' |
37 | 42 | deps: 'sudo apt-get install -y ninja-build clang libicu-dev'
|
38 | 43 | build_type: 'Debug'
|
39 | 44 | libtype_flag: '-DDISABLE_JIT=ON'
|
40 | 45 | Linux.ReleaseWithDebug:
|
41 |
| - image_name: 'ubuntu-20.04' |
| 46 | + image_name: 'ubuntu-22.04' |
42 | 47 | deps: 'sudo apt-get install -y ninja-build clang libicu-dev'
|
43 | 48 | build_type: 'RelWithDebInfo'
|
44 | 49 | libtype_flag: ''
|
45 | 50 | Linux.Release:
|
| 51 | + image_name: 'ubuntu-22.04' |
| 52 | + deps: 'sudo apt-get install -y ninja-build clang libicu-dev' |
| 53 | + build_type: 'Release' |
| 54 | + libtype_flag: '' |
| 55 | + Ubuntu20.ReleaseWithDebug: |
| 56 | + image_name: 'ubuntu-20.04' |
| 57 | + deps: 'sudo apt-get install -y ninja-build clang libicu-dev' |
| 58 | + build_type: 'RelWithDebInfo' |
| 59 | + libtype_flag: '' |
| 60 | + Ubuntu20.Release: |
46 | 61 | image_name: 'ubuntu-20.04'
|
47 | 62 | deps: 'sudo apt-get install -y ninja-build clang libicu-dev'
|
48 | 63 | build_type: 'Release'
|
|
0 commit comments