Skip to content

Commit

Permalink
feat:arm v7/v8 (#562)
Browse files Browse the repository at this point in the history
  • Loading branch information
Guovin committed Nov 18, 2024
1 parent 8a884aa commit 912e13c
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ jobs:
run: pip3 install --user pipenv
- name: Install dependecies
run: pipenv --python 3.8 && pipenv install
- name: Build
run: pipenv run build
- name: Update
run: pipenv run dev
- name: Commit and push if changed
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
Expand Down
4 changes: 3 additions & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ url = "https://mirrors.aliyun.com/pypi/simple"
verify_ssl = true

[scripts]
build = "python main.py"
dev = "python main.py"
ui = "python tkinter_ui/tkinter_ui.py"
multicast_tmp = "python updates/multicast/update_tmp.py"
docker_build_driver = "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v8 --build-arg APP_WORKDIR=/tv-driver --build-arg INSTALL_CHROMIUM=true -t guovern/tv-driver . --push"
docker_build_requests = "docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v8 --build-arg APP_WORKDIR=/tv-requests -t guovern/tv-requests . --push"

[dev-packages]

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
- ✅ 接口测速验效,响应时间、分辨率优先级,过滤无效接口
- ✅ 偏好设置:IPv6、接口来源排序优先级与数量配置、接口白名单
- ✅ 定时执行,北京时间每日 6:00 与 18:00 执行更新
- ✅ 支持多种运行方式:工作流、命令行、GUI 软件、Docker(amd64/arm64)
- ✅ 支持多种运行方式:工作流、命令行、GUI 软件、Docker(amd64/arm64/arm v7/arm v8)
- ✨ 更多功能请见[配置参数](./docs/config.md)

## 🔗 最新结果
Expand Down Expand Up @@ -133,7 +133,7 @@ pipenv install
```

```python
pipenv run build
pipenv run dev
```

### 方式三:GUI 软件
Expand Down
4 changes: 2 additions & 2 deletions README_en.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
- ✅ Interface speed testing and verification, with priority on response time and resolution, filtering out ineffective interfaces
- ✅ Preferences: IPv6, priority and quantity of interface source sorting, and interface whitelist
- ✅ Scheduled execution at 6:00 AM and 18:00 PM Beijing time daily
- ✅ Supports various execution methods: workflows, command line, GUI software, Docker(amd64/arm64)
- ✅ Supports various execution methods: workflows, command line, GUI software, Docker(amd64/arm64/arm v7/arm v8)
- ✨ For more features, see [Config parameter](./docs/config_en.md)

## 🔗 Latest results
Expand Down Expand Up @@ -133,7 +133,7 @@ pipenv install
```

```python
pipenv run build
pipenv run dev
```

### Method 3: GUI Software
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ https://mirror.ghproxy.com/raw.githubusercontent.com/您的github用户名/仓
项目目录下打开终端 CMD 依次运行以下命令:
pip install pipenv
pipenv install
pipenv run build
pipenv run dev
```

### 方式三:GUI 软件
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial_en.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ Please download and install Python from the official site. During installation,
Open a CMD terminal in the project directory and run the following commands in sequence:
pip install pipenv
pipenv install
pipenv run build
pipenv run dev
```

### Method 3: GUI Software
Expand Down

0 comments on commit 912e13c

Please sign in to comment.