Skip to content

Commit 4982bc4

Browse files
authored
Fix "BUILD_CONFIGS": Linux OS is "ubuntu" not "linux"
1 parent 4be9cd8 commit 4982bc4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

scripts/gha/print_matrix_configuration.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,12 @@
130130
},
131131
}
132132

133+
# key: supported platforms.
134+
# value: supported build configurations for that platform
135+
# It consists with workflow matrix. And Test Result Report will use it.
133136
BUILD_CONFIGS = {
134137
"windows": ["ssl_lib", "build_type", "architecture_windows_linux", "msvc_runtime", "cpp_compiler_windows"],
135-
"linux": ["ssl_lib", "build_type", "architecture_windows_linux", "cpp_compiler_linux"],
138+
"ubuntu": ["ssl_lib", "build_type", "architecture_windows_linux", "cpp_compiler_linux"],
136139
"macos": ["ssl_lib", "architecture_macos", "xcode_version"],
137140
"android": ["os", "ndk_version", "build_tools", "platform_version", "android_device"],
138141
"ios": ["os", "xcode_version", "ios_device"]

0 commit comments

Comments
 (0)