David
e46affea54
style: name
2023-11-05 20:42:07 +01:00
北雁 Cryolitia
a8220c2781
Update sync-resource.yml
2023-11-05 02:39:01 +08:00
北雁 Cryolitia
1fe598b3ab
Update sync-resource.yml
2023-11-05 02:23:44 +08:00
北雁 Cryolitia
047538e78d
Update sync-resource.yml
2023-11-05 02:09:12 +08:00
北雁 Cryolitia
538a654b3d
Update sync-resource.yml
2023-11-04 04:08:07 +08:00
北雁 Cryolitia
420df9a5e9
Update sync-resource.yml
2023-11-04 04:05:44 +08:00
北雁 Cryolitia
09dc337c35
Add Sync-Resource-CI ( #7186 )
2023-11-04 03:55:46 +08:00
北雁 Cryolitia
5743839999
在 AppImage 中添加 Terminal=true
...
https://github.com/AppImage/appimage.github.io/pull/3270#issuecomment-1783756048
2023-10-30 17:03:17 +08:00
zzyyyl
d73d59b677
ci: 更新 TaskSorter 脚本
2023-10-23 16:22:33 +08:00
北雁 Cryolitia
2929715512
Change to Appimage Package on Linux ( #7030 )
...
build:
https://github.com/Cryolitia/MaaAssistantArknights/actions/runs/6601833217
test:

PS: 浏览器里写的所以历史有点乱,建议 squash merge
2023-10-23 10:30:22 +08:00
uye
0038681fdc
feat: 显示 ui 版本号 ( #6944 )
2023-10-16 22:59:32 +08:00
Loong
fa04e9033d
ci: use submodule for maa-cli and build it from source
2023-10-16 18:36:58 +08:00
uye
4c0a7ce98f
fix: ci
2023-10-16 17:53:13 +08:00
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
8360968916
test: test ci
2023-10-15 12:54:47 +08:00
uye
80e898d03d
test: test ci
2023-10-15 12:50:17 +08:00
uye
61091c52f7
ci: 输出内容
...
怎么又炸了.jpg
2023-10-15 04:08:16 +08:00
uye
e8dbc7babb
ci: 修复错误的Version格式
2023-10-15 03:56:07 +08:00
uye
d33a75a184
ci: smoke testing同步修改
2023-10-15 03:36:21 +08:00
uye
0286df8b19
ci: fix 元素修改
2023-10-15 03:25:51 +08:00
uye
0ef1156998
ci: 修改错误类型
2023-10-15 01:55:02 +08:00
uye
f3d1cc30db
ci: 修改错误路径名
2023-10-15 01:42:38 +08:00
uye
eb214c2669
ci: 修改错误的路径名
2023-10-15 01:39:03 +08:00
uye
c4a3488b20
feat: 显示 ui 版本号
2023-10-15 01:34:28 +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