Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ARM TESTING ZONE #10229

Draft
wants to merge 41 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
a1f0cbb
WIP WIP WIP
strseb Jan 28, 2025
613a0b5
Extra symbol for condapack
strseb Jan 28, 2025
51a40cb
Do i have new toys now?
strseb Jan 29, 2025
73f9276
Update toolchain-alias and worker-type for qt-windows-aarch64-6.6
strseb Jan 29, 2025
221b31a
Update msvc_download.sh script permissions
strseb Jan 29, 2025
fe4c057
Start an updated build script for qt-windows
strseb Jan 29, 2025
28b4351
Add shebang and license header to msvc_download.sh
strseb Jan 29, 2025
9a8a82a
Update Python version in msvc_download.sh script
strseb Jan 29, 2025
f903099
Add Python script for MSVC toolchain download
strseb Jan 29, 2025
ebb6b51
Update toolchain script path for vsdownload.py
strseb Jan 29, 2025
7e6347e
Add PowerShell script to msvc bundle
strseb Jan 29, 2025
f04a712
Update conda environment setup script for Windows
strseb Jan 30, 2025
62c3dcf
Update script for compiling Qt on Windows
strseb Jan 30, 2025
275d129
Check dev env before downloading qt, i dont have *that* much time
strseb Jan 30, 2025
dc9f3f9
Add msitools to images
strseb Jan 30, 2025
ebf6047
Add conda-windows-base-x86_64 fetch to qt-windows-x86_64-6.6 and qt-w…
strseb Jan 30, 2025
3df209f
Finding the correct path?
strseb Jan 30, 2025
76c31cb
FOUND
strseb Jan 30, 2025
845f586
Update toolchain scripts for Windows ARM64 development
strseb Jan 30, 2025
dc8a8be
fix toolchain dep
strseb Jan 30, 2025
fe6e5f6
Update msvc_download.sh to use ARM64 for both host and target archite…
strseb Jan 30, 2025
c4d5aa5
Update toolchain scripts for ARM64 support
strseb Jan 30, 2025
b02cf13
retry?
strseb Jan 31, 2025
27b90d1
limit packages
strseb Feb 3, 2025
6c7dae9
give it more time
strseb Feb 3, 2025
e238b2d
Ignore the wierd package
strseb Feb 3, 2025
eb99e49
Give it more resources?
strseb Feb 3, 2025
bd8b258
Give it more resources?
strseb Feb 3, 2025
22cb0cf
is it too old ?
strseb Feb 3, 2025
fb0da02
AAAH add more echos
strseb Feb 3, 2025
88fcbdb
AAAH
strseb Feb 3, 2025
01bc8c3
Fix HOST_ARCH substitution
strseb Feb 3, 2025
bb08bde
Compile using a git clone
strseb Feb 3, 2025
0a16180
remove unused variable
strseb Feb 3, 2025
9cd3b12
Fix Cmake invocation
strseb Feb 4, 2025
20ee4e9
unity build was a dumb idea :(
strseb Feb 4, 2025
bac6377
typo
strseb Feb 4, 2025
a20fe92
HMMMM
strseb Feb 4, 2025
10cba8d
fix tpyo
strseb Feb 4, 2025
6af1066
android deploy qt is missing ://
strseb Feb 4, 2025
974ffca
Force build the thing?
strseb Feb 5, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Python version in msvc_download.sh script
- Updated the Python version in the msvc_download.sh script from Python 2 to Python 3.
- This change ensures compatibility with newer versions of Python and improves the maintainability of the script.
  • Loading branch information
strseb committed Jan 29, 2025
commit 9a8a82a1e3970141bd2c8c1bb3e2c58fa7cbf30e
2 changes: 1 addition & 1 deletion taskcluster/scripts/toolchain/msvc_download.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

python taskcluster/scripts/vsdownload.py --accept-license --dest msvc \
python3 taskcluster/scripts/vsdownload.py --accept-license --dest msvc \
Microsoft.VisualStudio.Component.VC.Redist.14.Latest \
Microsoft.VisualCpp.Tools.HostX64.TargetARM64 \
Microsoft.VisualCpp.Tools.HostX64.TargetX64 \
Expand Down
Loading