|
14 | 14 | QT_version: 5.15.2 |
15 | 15 | lapack_version: 3.11.0 |
16 | 16 | mingw_version: 810 |
| 17 | + python_version: 3.13 |
17 | 18 |
|
18 | 19 | jobs: |
19 | 20 | cache-mingw-from-QT: |
|
28 | 29 | key: ${{ runner.os }}-mingw${{env.mingw_version}}_64 |
29 | 30 |
|
30 | 31 | # all what follows is only run on cache miss |
| 32 | + - name: install newer python |
| 33 | + if: steps.cache-minGW.outputs.cache-hit != 'true' |
| 34 | + uses: actions/setup-python@v5 |
| 35 | + with: |
| 36 | + python-version: ${{env.python_version}} |
31 | 37 | - name: install aqtinstall tool |
32 | 38 | if: steps.cache-minGW.outputs.cache-hit != 'true' |
33 | 39 | run: pip install aqtinstall |
|
70 | 76 | path: Tools |
71 | 77 | key: ${{ runner.os }}-mingw${{env.mingw_version}}_64 |
72 | 78 | fail-on-cache-miss: true |
| 79 | + - name: install newer python |
| 80 | + if: steps.cache-openCV-QT.outputs.cache-hit != 'true' |
| 81 | + uses: actions/setup-python@v5 |
| 82 | + with: |
| 83 | + python-version: ${{env.python_version}} |
73 | 84 | - name: add minGW to path |
74 | 85 | if: steps.cache-openCV-QT.outputs.cache-hit != 'true' |
75 | 86 | shell: bash |
@@ -137,6 +148,11 @@ jobs: |
137 | 148 | - name: extract archive |
138 | 149 | if: steps.cache-QWT.outputs.cache-hit != 'true' |
139 | 150 | run: 7z x qwt-${{env.QWT_version}}.zip |
| 151 | + - name: install newer python |
| 152 | + if: steps.cache-QWT.outputs.cache-hit != 'true' |
| 153 | + uses: actions/setup-python@v5 |
| 154 | + with: |
| 155 | + python-version: ${{env.python_version}} |
140 | 156 | - name: install aqtinstall tool |
141 | 157 | if: steps.cache-QWT.outputs.cache-hit != 'true' |
142 | 158 | run: pip install aqtinstall |
|
0 commit comments