updated hint in win64 ps1 file #292
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: huggle | |
on: | |
push: | |
pull_request: | |
jobs: | |
build-linux: | |
name: Linux | |
runs-on: ubuntu-${{ matrix.ubuntu-version }} | |
env: | |
QTTYPE: 5 | |
strategy: | |
fail-fast: false | |
matrix: | |
ubuntu-version: [18.04, 20.04] | |
qt-version: [5.12.10, 5.15.2] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: jurplel/install-qt-action@v2 | |
with: | |
version: ${{ matrix.qt-version }} | |
modules: 'qtwebengine' | |
- run: travis/before_script.sh | |
- run: travis/script.sh | |
build-macos: | |
name: macOS | |
runs-on: macos-latest | |
env: | |
QTTYPE: 5 | |
strategy: | |
fail-fast: false | |
matrix: | |
qt-version: [5.12.10, 5.15.2] | |
steps: | |
- uses: jurplel/install-qt-action@v2 | |
with: | |
version: ${{ matrix.qt-version }} | |
modules: 'qtwebengine' | |
- uses: actions/checkout@v2 | |
- run: travis/before_install_osx.sh | |
- run: travis/before_script_osx.sh | |
- run: travis/script_osx.sh | |
build-windows: | |
name: Windows | |
runs-on: windows-${{ matrix.windows-version }} | |
env: | |
QTTYPE: 5 | |
strategy: | |
fail-fast: false | |
matrix: | |
windows-version: [2019] | |
qt-version: [5.12.10, 5.15.2] | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- uses: jurplel/install-qt-action@v2 | |
with: | |
version: ${{ matrix.qt-version }} | |
modules: 'qtwebengine' | |
- uses: microsoft/[email protected] | |
- name: run appveyor script | |
shell: pwsh | |
working-directory: ./windows64 | |
run: | | |
$msbuildpath = vswhere -latest -requires Microsoft.Component.MSBuild -find MSBuild\**\Bin\MSBuild.exe | select-object -first 1 | |
if ($path) { | |
& $path $args | |
} | |
./veyor.ps1 -msbuild_path $msbuildpath -qt5_path $env:Qt5_Dir |