diff --git a/.github/workflows/ci-win.yml b/.github/workflows/ci-win.yml index 63a2f1352f..7eb011546d 100644 --- a/.github/workflows/ci-win.yml +++ b/.github/workflows/ci-win.yml @@ -80,13 +80,24 @@ jobs: git clone https://github.com/tamlok/openssl-utils.git openssl-utils.git --depth=1 working-directory: ${{runner.workspace}}/build + - name: Download JOM + uses: suisei-cn/actions-download-file@v1 + with: + url: http://download.qt.io/official_releases/jom/jom.zip + target: ${{runner.temp}}\ + + - name: Unzip JOM + run: | + 7z x jom.zip -ojom + working-directory: ${{runner.temp}} + - name: Configure and Build Project shell: cmd run: | qmake --version call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" ${{matrix.config.platform}} qmake -r -spec win32-msvc CONFIG-=debug CONFIG+=release %GITHUB_WORKSPACE%\vnote.pro - nmake + ${{runner.temp}}\jom\jom working-directory: ${{runner.workspace}}/build - name: Package Project 1