-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[更新GitHub Actions工作流和vcpkg配置文件]: 根据项目需求,对GitHub Actions工作流和vcpkg配置文件进…
…行了重要更新。 - 更新了`cmake.yml`和`qmake.yml`工作流文件,添加了对`vcpkg.json`文件的路径忽略规则,以确保更改此文件时不会触发不必要的工作流运行。 - 在`cmake.yml`和`qmake.yml`工作流中,为`vcpkg`安装步骤添加了新的库`breakpad`和`ffmpeg`的特定功能选项,以支持更广泛的功能需求。 - 更新了`cmake.yml`、`qmake.yml`和`toolchain.yml`工作流文件中的`vcpkg`安装命令,使用新的变量`matrix.vcpkg_libs`和`matrix.vcpkg_ffmpeg_features`,以实现更灵活的配置。 - 在`cmake.yml`工作流中,添加了删除`vcpkg.json`文件的步骤,以解决由于`jurplel/install-qt-action@v3`修改默认Python版本导致的问题。 - 更新了`readme.yml`工作流,将Node.js版本从`12.x`升级到`20.x`,以支持最新的Node.js特性和安全性更新。 - 在`toolchain.yml`工作流中,移除了`Install Qt`步骤,因为它与项目当前的需求不再相关。 - 创建了新的`vcpkg.json`文件,定义了项目的依赖项,包括`breakpad`和带有多个平台特定功能的`ffmpeg`,以及为不同平台配置的基线版本。 - 对于所有工作流,更新了`actions/cache/restore`和`actions/cache/save`操作到最新版本,以确保最佳性能和兼容性。
- Loading branch information
Showing
5 changed files
with
89 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json", | ||
"name": "qt-ffmpeg", | ||
"version": "0.0.1", | ||
"description": "manifest", | ||
"dependencies": [ | ||
"breakpad", | ||
{ | ||
"name": "ffmpeg", | ||
"features": [ | ||
"opengl", | ||
"ass", | ||
"bzip2", | ||
"freetype", | ||
"fribidi", | ||
"zlib", | ||
"gpl", | ||
"ffmpeg", | ||
"ffplay", | ||
"ffprobe", | ||
{ | ||
"name": "qsv", | ||
"platform": "windows" | ||
}, | ||
{ | ||
"name": "amf", | ||
"platform": "windows | linux" | ||
}, | ||
{ | ||
"name": "nvcodec", | ||
"platform": "windows | linux" | ||
} | ||
] | ||
} | ||
], | ||
"builtin-baseline": "3c76dc55f8bd2b7f4824bcd860055094bfbbb9ea" | ||
} |