Attempt to use different qt installer
This commit is contained in:
parent
d4f24b3109
commit
672b315272
35
.github/workflows/build.yml
vendored
35
.github/workflows/build.yml
vendored
@ -16,18 +16,37 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- uses: actions/setup-python@v1
|
- name: Cache Qt
|
||||||
|
id: cache-qt
|
||||||
- uses: Skycoder42/action-setup-qt@master
|
uses: actions/cache@v1
|
||||||
id: qt
|
|
||||||
with:
|
with:
|
||||||
version: 5.15.0
|
path: ${{ github.workspace }}/qt5
|
||||||
platform: msvc2019_64
|
key: ${{ runner.os }}-qt5
|
||||||
|
|
||||||
|
- name: Install Qt
|
||||||
|
uses: jurplel/install-qt-action@v2
|
||||||
|
with:
|
||||||
|
version: '5.15.2'
|
||||||
|
host: 'windows'
|
||||||
|
target: 'desktop'
|
||||||
|
arch: 'win64_msvc2019_64'
|
||||||
|
dir: '${{ github.workspace }}/qt5/'
|
||||||
|
install-deps: 'true'
|
||||||
|
modules: ''
|
||||||
|
cached: ${{ steps.cache-qt.outputs.cache-hit }}
|
||||||
|
setup-python: 'true'
|
||||||
|
tools: ''
|
||||||
|
set-env: 'false'
|
||||||
|
tools-only: 'false'
|
||||||
|
aqtversion: '==0.11.1'
|
||||||
|
py7zrversion: '==0.11.3'
|
||||||
|
extra: '--external 7z'
|
||||||
|
|
||||||
- name: qmake
|
- name: qmake
|
||||||
run: |
|
run: |
|
||||||
qmake CONFIG+=install_ok QT_PLATFORM=msvc2019_64
|
Invoke-BatchFile "%programfiles(x86)%\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
|
||||||
${{steps.qt.outputs.make}} qmake_all
|
qmake
|
||||||
|
nmake
|
||||||
|
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
|
Loading…
Reference in New Issue
Block a user