Skip to content

Commit

Permalink
Test: Qt 6.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jdpurcell committed Jul 5, 2024
1 parent c277a97 commit 4d4127d
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 18 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,35 +19,35 @@ jobs:
strategy:
matrix:
include:
- runner: 'ubuntu-20.04'
qtVersion: '5.15.2'
- runner: 'ubuntu-20.04'
qtVersion: '5.9'
osSuffix: '_qt5.9'
skipPlugins: 'true'
# - runner: 'ubuntu-20.04'
# qtVersion: '5.15.2'
# - runner: 'ubuntu-20.04'
# qtVersion: '5.9'
# osSuffix: '_qt5.9'
# skipPlugins: 'true'
- runner: 'macos-12'
qtVersion: '6.5.3'
qtVersion: '6.7.2'
qtModules: 'qtimageformats'
buildArch: 'Universal'
- runner: 'macos-12'
qtVersion: '5.15.2'
osSuffix: '_legacy'
# - runner: 'macos-12'
# qtVersion: '5.15.2'
# osSuffix: '_legacy'
- runner: 'windows-2022'
qtVersion: '6.5.3'
qtVersion: '6.7.2'
qtArch: 'win64_msvc2019_64'
osSuffix: '_64'
qtModules: 'qtimageformats'
- runner: 'windows-2022'
qtVersion: '6.5.3'
qtVersion: '6.7.2'
qtArch: 'win64_msvc2019_arm64'
osSuffix: '_arm64'
qtModules: 'qtimageformats'
buildArch: 'Arm64'
- runner: 'windows-2022'
qtVersion: '5.15.2'
qtArch: 'win32_msvc2019'
osSuffix: '_32'
buildArch: 'X86'
# - runner: 'windows-2022'
# qtVersion: '5.15.2'
# qtArch: 'win32_msvc2019'
# osSuffix: '_32'
# buildArch: 'X86'
runs-on: ${{ matrix.runner }}
steps:
- name: Set environment variables
Expand Down
3 changes: 2 additions & 1 deletion dist/scripts/download-plugins.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ if ($pluginNames.count -eq 0) {
}

foreach ($pluginName in $pluginNames) {
$pluginQtVersion = '6.5.3'
$qtArch = $env:qtArch ? "-$env:qtArch" : ''
$artifactName = "$pluginName-$imageName-$qtVersion$qtArch.zip"
$artifactName = "$pluginName-$imageName-$pluginQtVersion$qtArch.zip"
$downloadUrl = "$binaryBaseUrl/$artifactName"

Write-Host "Downloading $downloadUrl"
Expand Down

0 comments on commit 4d4127d

Please sign in to comment.