We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 552cd22 commit d3eb72fCopy full SHA for d3eb72f
.github/workflows/build.yml
@@ -57,7 +57,8 @@ jobs:
57
OUT_FILE_NAME: QBRssManager.exe
58
ASSET_MIME: application/vnd.microsoft.portable-executable
59
# linux环境加上qt环境后测试可用
60
- - os: ubuntu-latest
+ # 这里要用22.04的系统,不要用latest,latest对应的是20.04的旧系统。。。打出来的包会有问题
61
+ - os: ubuntu-22.04
62
TARGET: linux
63
SHELL: bash
64
CMD_BUILD: |
@@ -78,11 +79,11 @@ jobs:
78
79
target: 'desktop'
80
arch: 'gcc_64'
81
- uses: actions/checkout@v3
- # python版本固定为3.10 确保新系统可用
82
- - name: 初始化 Python 3.10
+ # python版本固定为3.7 可以兼容win7
83
+ - name: 初始化 Python 3.7
84
uses: actions/setup-python@v4
85
with:
- python-version: '3.10'
86
+ python-version: '3.7'
87
# 使用缓存 https://github.com/marketplace/actions/setup-python
88
# 把依赖缓存起来,下次可以直接使用
89
cache: 'pip'
0 commit comments