File tree Expand file tree Collapse file tree
Sources/BuildScripts/XCFrameworkBuild Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1187,11 +1187,9 @@ enum Utility {
11871187 if ProcessInfo . processInfo. environment. keys. contains ( " GITHUB_ACTION " ) {
11881188 // if build FFmpeg failed, print the ffbuild/config.log content
11891189 if logURL. path. contains ( " FFmpeg " ) {
1190- var ffbuildLogURL = logURL
1191- ffbuildLogURL. deletePathExtension ( )
1192- print ( ffbuildLogURL. path)
1193- ffbuildLogURL = ffbuildLogURL. appendingPathComponent ( " ffbuild/config.log " )
1194- print ( ffbuildLogURL. path)
1190+ let ffbuildLogURL = logURL
1191+ . deletingPathExtension ( )
1192+ . appendingPathComponent ( " ffbuild/config.log " )
11951193 if FileManager . default. fileExists ( atPath: ffbuildLogURL. path) {
11961194 if let content = String ( data: try Data ( contentsOf: ffbuildLogURL) , encoding: . utf8) {
11971195 print ( " ############# \( ffbuildLogURL) CONTENT BEGIN ############# " )
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ enum Library: String, CaseIterable {
8080 case . libdovi:
8181 return " 3.3.0 "
8282 case . vulkan:
83- return " 1.4.0 "
83+ return " 1.4.0-fix "
8484 case . libshaderc: // compiling GLSL (OpenGL Shading Language) shaders into SPIR-V (Standard Portable Intermediate Representation - Vulkan) code
8585 return " 2025.4.0 "
8686 case . libuchardet:
You can’t perform that action at this time.
0 commit comments