MistEO
206d2d05bb
ci: 使用 token 下载 CLI ( #6941 )
2023-10-15 20:05:06 +08:00
David
5704d86849
chore: removed UnexpectedType error
2023-10-15 11:56:39 +02:00
Loong
960a5e4668
ci: trigger CI on changes to the CI workflow
2023-10-15 17:12:00 +08:00
Loong
9ad3896470
ci: download CLI with token
2023-10-15 16:38:20 +08:00
uye
c58e5504fe
Revert "ci: Update smoke-testing.yml -> .NET8"
...
This reverts commit 5c77a22c31 .
2023-10-13 18:00:46 +08:00
uye
5c77a22c31
ci: Update smoke-testing.yml -> .NET8
2023-10-13 16:25:06 +08:00
MistEO
b325ed64d3
feat: update local resource by etag ( #6283 )
2023-09-09 23:33:45 +08:00
MistEO
5890523a87
feat: 添加CLI支持 ( #6144 )
2023-09-01 15:58:31 +08:00
Long Wang
1ad82128a7
ci: remove unrelevant changes
2023-08-31 17:16:17 +08:00
Long Wang
3790e7b24c
ci: fix download cli
2023-08-31 17:14:27 +08:00
AnnAngela
4cafbe8ee9
ci: add log
2023-08-31 17:12:17 +08:00
Long Wang
caf12f6ec4
ci: ship CLI in Linux release
2023-08-31 12:49:13 +08:00
MistEO
1a76808b16
fix: link in mac-runtime release ( #5954 )
...
在macOS上`ln`产生的符号链接会直接沿用输入的路径,而不会进行变换,因此在现在的情况下产生的符号链接是这样的:
```
libonnxruntime.1.14.1.dylib
libMaaDerpLearning.dylib
libMaaCore.dylib
libopencv_world4.407.dylib
libonnxruntime.dylib@ -> macos-runtime-temp/libonnxruntime.1.14.1.dylib
libopencv_world4.dylib@ -> macos-runtime-temp/libopencv_world4.407.dylib
```
为了生成正确的符号符号链接,我们需要输入的是目标相对链接文件的路径,由于目标和符号链接位于同一文件夹,所以应该是目标的文件名:
```bash
bash-3.2$ libonnxruntime_file=$(basename macos-runtime-temp/libonnxruntime*.dylib)
bash-3.2$ ln -vs $libonnxruntime_file macos-runtime-temp/libonnxruntime.dylib
macos-runtime-temp/libonnxruntime.dylib -> libonnxruntime.1.14.1.dylib
bash-3.2$ libopencv_world_file=$(basename macos-runtime-temp/libopencv_world*.dylib)
bash-3.2$ ln -vs $libopencv_world_file macos-runtime-temp/libopencv_world4.dylib
macos-runtime-temp/libopencv_world4.dylib -> libopencv_world4.407.dylib
```
这样才可以产生正常的符号链接:
```
libMaaCore.dylib
libMaaDerpLearning.dylib
libonnxruntime.1.14.1.dylib
libonnxruntime.dylib -> libonnxruntime.1.14.1.dylib
libopencv_world4.407.dylib
libopencv_world4.dylib -> libopencv_world4.407.dylib
```
2023-08-16 11:02:19 +08:00
David
e5dc2011c5
Feat: Auto Update now orders Global tasks.json like Official
...
Tasks_Sorter.py now orders the Global servers tasks with the same order of the official server
For EN: removed Award task + I.S. trader shopping regex
For KR: removed deprecated I.S. tasks
Co-authored-by: 178619 <snoo91919@gmail.com >
2023-08-15 19:53:44 +02:00
Loong
7f3d9b5234
fix: link in mac-runtime release
2023-08-15 17:59:37 +08:00
Infko
d81ca37a0e
move qodana baseline to .github directory
2023-08-01 16:18:32 +00:00
Infko
65d127fc7a
add baseline analyze
2023-08-01 11:22:40 +00:00
MistEO
29a4c6c515
ci(qodana): fix branch
2023-08-01 17:59:57 +08:00
Infko
f7cee6ddd6
增加 Qodana 静态扫描 ( #5662 )
...
用于 MAA 主项目的话,建议去 https://qodana.cloud/ 申请一个对应 MAA 主项目的
Token(因为要配置SECRET)。开源项目应该可以免费申请 Ultimate/Ultimate Plus 的授权。
目前还不确定这个静态扫描需要在哪些流程触发,目前是放在main了,感觉可以根据pr流程等进行变更。
[https://qodana.cloud/projects/3j1Pv/reports/g4BmP ](https://qodana.cloud/projects/3j1Pv/reports/g4BmP )
这个是在自己fork的项目里面跑的结果,可以品一品(
追记:https://qodana.cloud/projects/3j1Pv/reports/5vRNG 这个是去除了C++和
xaml部分的(已配置基线,需要到baseline栏看)。
2023-08-01 17:57:27 +08:00
AnnAngela
b061a2ecca
ci: macos-runtime-universal.zip 生成过程自适应版本号
2023-07-25 16:42:17 +08:00
AnnAngela
4552bf5c46
ci: 改进 macos-runtime-universal.zip 生成
2023-07-25 08:08:00 +00:00
_ChingC
6219346fe9
ci: 添加macos-runtime的resource文件夹和dylib的symlink
2023-07-25 14:20:24 +08:00
AnnAngela
b3c590b9d4
ci: 修复路径错误
2023-07-23 15:18:24 +08:00
AnnAngela
cd9018a8c9
ci: 打包 macos dylib
2023-07-22 08:37:35 +00:00
SherkeyXD
e0a145e274
ci: 规范化step name
2023-07-19 00:37:52 +08:00
SherkeyXD
2921fcb5f9
ci: 删除export后面多余的空格
2023-07-18 23:49:56 +08:00
AnnAngela
94be6b952d
ci: 修复docs变动检测逻辑
2023-07-02 07:41:53 +00:00
AnnAngela
04e037a373
ci: 发版检测到docs发生变动时部署
2023-06-16 02:06:05 +00:00
AnnAngela
99de3ae060
ci: 移除不需要的changelog
2023-06-09 18:39:34 +08:00
AnnAngela
9ddbd8e049
ci: 删除多余mac完整包
2023-06-09 18:37:44 +08:00
MistEO
6df21d189f
ci: Do not force push tag
2023-06-09 17:41:17 +08:00
AnnAngela
8632993b25
feat: add file cleanup step in release-ota.yml workflow
...
This commit adds a step to cleanup unnecessary files after the release build, using the "find" command and a regex pattern to exclude important files matching the new "MAA-${{needs.create-tag.outputs.release_tag}}*.dmg" and "MAA-${{needs.create-tag.outputs.release_tag}}*.html" naming formats, as well as two specific file extensions '.delta' and '.xml'. This helps to improve release build efficiency by removing unneeded files before uploading to MaaRelease.
2023-06-09 03:23:50 +00:00
AnnAngela
c6e868b2f0
ci: 修复 "false" !== false
2023-06-09 02:37:14 +00:00
AnnAngela
14c1e905d7
ci: file没指定好
2023-06-09 01:23:27 +00:00
MistEO
c3668b5eba
revert: 回滚mac ota包上传流程(漏了.jpg)
2023-06-08 21:54:07 +08:00
MistEO
feaa66ec4f
revert: 回滚mac ota包上传流程
2023-06-08 21:45:40 +08:00
AnnAngela
7e0c0eca8c
ci: 这次应该没问题了……
2023-06-08 19:24:33 +08:00
AnnAngela
d4cf6c74bf
ci: 再debug一下
2023-06-08 19:22:46 +08:00
AnnAngela
0f7180828b
ci: 先debug一下
2023-06-08 19:18:54 +08:00
AnnAngela
1cc304d516
ci: 奇怪的路径
2023-06-08 19:15:39 +08:00
AnnAngela
dc464fc21e
ci: 修复下载路径错误
2023-06-08 19:11:27 +08:00
AnnAngela
fdf17eca70
ci: 修复路径错误
2023-06-08 19:07:54 +08:00
AnnAngela
0ad41a9646
ci: 修复Config未传递的问题
2023-06-08 19:05:08 +08:00
MistEO
b19aa9dff5
chore: try to fix release-ota.yml
2023-06-08 18:42:37 +08:00
AnnAngela
1b93074175
ci: 将发版流程全部迁移至 MaaRelease ( #4981 )
2023-06-04 20:53:58 +08:00
MistEO
31cb7219d0
chore: smoke-testing always upload logs
2023-06-04 20:51:28 +08:00
MistEO
adb0202702
fix: res-update-game.yml
2023-06-04 15:58:36 +08:00
MistEO
720d41a16a
fix: res-update-game.yml
2023-06-04 15:45:49 +08:00
AnnAngela
8e6ffb8fa0
ci: 现在 release-mirrors 会自行调用 update_version_api
2023-05-28 16:55:05 +08:00
MistEO
b2d3879108
fix: 修复资源更新CI取消条件
2023-05-28 15:35:20 +08:00