Skip to content

Commit fd27df8

Browse files
committed
Also update the generated matrix.
1 parent 020c1db commit fd27df8

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

scripts/gha/print_matrix_configuration.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -73,35 +73,35 @@
7373
PARAMETERS = {
7474
"desktop": {
7575
"matrix": {
76-
"os": ["ubuntu-20.04", "macos-13"],
76+
"os": ["ubuntu-22.04", "macos-13"],
7777
"build_type": ["Release", "Debug"],
7878
"architecture": ["x64", "x86"],
7979
"msvc_runtime": ["static","dynamic"],
8080
"xcode_version": ["15.1"],
8181
"python_version": ["3.7"],
8282

8383
EXPANDED_KEY: {
84-
"os": ["ubuntu-20.04", "macos-13", "windows-latest"],
84+
"os": ["ubuntu-22.04", "macos-13", "windows-latest"],
8585
"xcode_version": ["15.1"],
8686
}
8787
}
8888
},
8989

9090
"android": {
9191
"matrix": {
92-
"os": ["ubuntu-20.04", "macos-13", "windows-latest"],
92+
"os": ["ubuntu-22.04", "macos-13", "windows-latest"],
9393
"architecture": ["x64"],
9494
"python_version": ["3.7"],
9595

9696
EXPANDED_KEY: {
97-
"os": ["ubuntu-20.04", "macos-13", "windows-latest"]
97+
"os": ["ubuntu-22.04", "macos-13", "windows-latest"]
9898
}
9999
}
100100
},
101101

102102
"integration_tests": {
103103
"matrix": {
104-
"os": ["ubuntu-20.04", "macos-13", "windows-latest"],
104+
"os": ["ubuntu-22.04", "macos-13", "windows-latest"],
105105
"platform": ["Desktop", "Android", "iOS", "tvOS"],
106106
"ssl_lib": ["openssl"],
107107
"android_device": ["android_target", "emulator_ftl_target"],
@@ -119,7 +119,7 @@
119119
"build_tools_version": ["28.0.3"],
120120

121121
MINIMAL_KEY: {
122-
"os": ["ubuntu-20.04"],
122+
"os": ["ubuntu-22.04"],
123123
"platform": ["Desktop"],
124124
"apis": "firestore"
125125
},
@@ -299,9 +299,9 @@ def print_value(value):
299299
""" Print Json formatted string that can be consumed in Github workflow."""
300300
# Eg: for lists,
301301
# print(json.dumps) ->
302-
# ["ubuntu-20.04", "macos-latest", "windows-latest"]
302+
# ["ubuntu-22.04", "macos-latest", "windows-latest"]
303303
# print(repr(json.dumps)) ->
304-
# '["ubuntu-20.04", "macos-latest", "windows-latest"]'
304+
# '["ubuntu-22.04", "macos-latest", "windows-latest"]'
305305

306306
# Eg: for strings
307307
# print(json.dumps) -> "flame"

0 commit comments

Comments
 (0)