Skip to content

Commit

Permalink
ci: 新增资源检查 CI
Browse files Browse the repository at this point in the history
  • Loading branch information
MistEO committed Sep 20, 2024
1 parent a049be3 commit 785d18e
Show file tree
Hide file tree
Showing 2 changed files with 75 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: check

on:
push:
branches:
- "**"
paths:
- ".github/workflows/check.yml"
- "assets/**"
- "**.py"
pull_request:
branches:
- "**"
paths:
- ".github/workflows/check.yml"
- "assets/**"
- "**.py"
workflow_dispatch:

jobs:
resource:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

# pip install maafw
- name: Install maafw
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade maafw --pre
- name: Check Resource
run: |
python ./check_resource.py ./assets/resource/base/ ./assets/resource/bilibili/ ./assets/resource/global_en/
39 changes: 39 additions & 0 deletions check_resource.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
import sys

from typing import List
from pathlib import Path

from maa.resource import Resource
from maa.tasker import Tasker, LoggingLevelEnum


def check(dirs: List[Path]) -> bool:
resource = Resource()

print(f"Checking {len(dirs)} directories...")

for dir in dirs:
print(f"Checking {dir}...")
status = resource.post_path(dir).wait().status()
if not status.succeeded():
print(f"Failed to check {dir}.")
return False

print("All directories checked.")
return True


def main():
if len(sys.argv) < 2:
print("Usage: python configure.py <directory>")
sys.exit(1)

Tasker.set_stdout_level(LoggingLevelEnum.All)

dirs = [Path(arg) for arg in sys.argv[1:]]
if not check(dirs):
sys.exit(1)


if __name__ == "__main__":
main()

0 comments on commit 785d18e

Please sign in to comment.