-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branches 'main' and 'main' of https://github.com/Guyao146/RLTools
- Loading branch information
Showing
1 changed file
with
39 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,39 @@ | ||
Job Description: | ||
Daily Update: | ||
Version: 3.0.0 | ||
date: 2024.4.23 | ||
runs-on: Windows 11 Least Version | ||
on: | ||
steps: | ||
# 更新日志 | ||
- name: 1.修复 VC、Net运行库无法下载的bug | ||
- name: 2.优化 更新逻辑 | ||
- name: 3.优化 检测错误逻辑 | ||
- name: 4.增加 debug模式 | ||
- name: 5.修复 修复epic与RL环境时无法返回主菜单而被迫重启的问题 | ||
- name: 6.修复 多个菜单返回时出现进行下一步的问题 | ||
- name: 7.增加 日志监控体系(本地,不上传) | ||
- name: 8.优化 异步体系,针对更多场景进行优化 | ||
- name: 9.升级 7z依赖已更新至24.04 beta | ||
- name: 10.升级 aria2依赖已更新至1.37.0 | ||
name: 更新工具箱3.0.0 | ||
#1.修复 VC、Net运行库无法下载的bug | ||
#2.优化 更新逻辑 | ||
#3.优化 检测错误逻辑 | ||
#4.增加 debug模式 | ||
#5.修复 修复epic与RL环境时无法返回主菜单而被迫重启的问题 | ||
#6.修复 多个菜单返回时出现进行下一步的问题 | ||
#7.增加 日志监控体系(本地,不上传) | ||
#8.优化 异步体系,针对更多场景进行优化 | ||
#9.升级 7z依赖已更新至24.04 beta | ||
#10.升级 aria2依赖已更新至1.37.0 | ||
on: | ||
push: | ||
branches: ["main"] | ||
pull_request: | ||
branches: ["main"] | ||
|
||
jobs: | ||
build: | ||
runs-on: Windows11 For WorkStation Least Version | ||
|
||
strategy: | ||
matrix: | ||
node-version: [16.x, 18.x, 20.x] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
||
- name: Run Build Script | ||
run: | | ||
chmod a+x ./install-dependents.sh | ||
chmod a+x ./build.sh | ||
./install-dependents.sh | ||
./build.sh |