|
73 | 73 | PARAMETERS = { |
74 | 74 | "desktop": { |
75 | 75 | "matrix": { |
76 | | - "os": ["ubuntu-20.04", "macos-13"], |
| 76 | + "os": ["ubuntu-22.04", "macos-13"], |
77 | 77 | "build_type": ["Release", "Debug"], |
78 | 78 | "architecture": ["x64", "x86"], |
79 | 79 | "msvc_runtime": ["static","dynamic"], |
80 | 80 | "xcode_version": ["15.1"], |
81 | 81 | "python_version": ["3.7"], |
82 | 82 |
|
83 | 83 | EXPANDED_KEY: { |
84 | | - "os": ["ubuntu-20.04", "macos-13", "windows-latest"], |
| 84 | + "os": ["ubuntu-22.04", "macos-13", "windows-latest"], |
85 | 85 | "xcode_version": ["15.1"], |
86 | 86 | } |
87 | 87 | } |
88 | 88 | }, |
89 | 89 |
|
90 | 90 | "android": { |
91 | 91 | "matrix": { |
92 | | - "os": ["ubuntu-20.04", "macos-13", "windows-latest"], |
| 92 | + "os": ["ubuntu-22.04", "macos-13", "windows-latest"], |
93 | 93 | "architecture": ["x64"], |
94 | 94 | "python_version": ["3.7"], |
95 | 95 |
|
96 | 96 | EXPANDED_KEY: { |
97 | | - "os": ["ubuntu-20.04", "macos-13", "windows-latest"] |
| 97 | + "os": ["ubuntu-22.04", "macos-13", "windows-latest"] |
98 | 98 | } |
99 | 99 | } |
100 | 100 | }, |
101 | 101 |
|
102 | 102 | "integration_tests": { |
103 | 103 | "matrix": { |
104 | | - "os": ["ubuntu-20.04", "macos-13", "windows-latest"], |
| 104 | + "os": ["ubuntu-22.04", "macos-13", "windows-latest"], |
105 | 105 | "platform": ["Desktop", "Android", "iOS", "tvOS"], |
106 | 106 | "ssl_lib": ["openssl"], |
107 | 107 | "android_device": ["android_target", "emulator_ftl_target"], |
|
119 | 119 | "build_tools_version": ["28.0.3"], |
120 | 120 |
|
121 | 121 | MINIMAL_KEY: { |
122 | | - "os": ["ubuntu-20.04"], |
| 122 | + "os": ["ubuntu-22.04"], |
123 | 123 | "platform": ["Desktop"], |
124 | 124 | "apis": "firestore" |
125 | 125 | }, |
@@ -299,9 +299,9 @@ def print_value(value): |
299 | 299 | """ Print Json formatted string that can be consumed in Github workflow.""" |
300 | 300 | # Eg: for lists, |
301 | 301 | # print(json.dumps) -> |
302 | | - # ["ubuntu-20.04", "macos-latest", "windows-latest"] |
| 302 | + # ["ubuntu-22.04", "macos-latest", "windows-latest"] |
303 | 303 | # print(repr(json.dumps)) -> |
304 | | - # '["ubuntu-20.04", "macos-latest", "windows-latest"]' |
| 304 | + # '["ubuntu-22.04", "macos-latest", "windows-latest"]' |
305 | 305 |
|
306 | 306 | # Eg: for strings |
307 | 307 | # print(json.dumps) -> "flame" |
|
0 commit comments