Skip to content

Commit

Permalink
Remove arm64 qmake patch azure test
Browse files Browse the repository at this point in the history
  • Loading branch information
rectalogic committed Mar 6, 2024
1 parent 1615782 commit abc3455
Showing 1 changed file with 26 additions and 30 deletions.
56 changes: 26 additions & 30 deletions ci/generate_azure_pipelines_matrices.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,36 +371,32 @@ def __init__(self, platform, build_jobs):
)

# Test binary patch of qmake
for lst, os_name, version, arch, arch_dir in (
(linux_build_jobs, "linux", "5.12.11", "gcc_64", "gcc_64"),
(linux_arm64_build_jobs, "linux_arm64", "6.7.0", "linux_gcc_arm64", "gcc_arm64"),
):
lst.extend(
[
# New output dir is shorter than the default value; qmake could fail to
# locate prefix dir if the value is patched wrong
BuildJob(
"install-qt",
version,
os_name,
"desktop",
arch,
arch_dir,
output_dir="/t/Q",
),
# New output dir is longer than the default value.
# This case is meant to work without any bugfix; if this fails, the test is setup wrong
BuildJob(
"install-qt",
version,
os_name,
"desktop",
arch,
arch_dir,
output_dir="/some/super/long/arbitrary/path/to" * 5,
),
]
)
linux_build_jobs.extend(
[
# New output dir is shorter than the default value; qmake could fail to
# locate prefix dir if the value is patched wrong
BuildJob(
"install-qt",
"5.12.11",
"linux",
"desktop",
"gcc_64",
"gcc_64",
output_dir="/t/Q",
),
# New output dir is longer than the default value.
# This case is meant to work without any bugfix; if this fails, the test is setup wrong
BuildJob(
"install-qt",
"5.12.11",
"linux",
"desktop",
"gcc_64",
"gcc_64",
output_dir="/some/super/long/arbitrary/path/to" * 5,
),
]
)

qt_creator_bin_path = "./Tools/QtCreator/bin/"
qt_creator_mac_bin_path = "./Qt Creator.app/Contents/MacOS/"
Expand Down

0 comments on commit abc3455

Please sign in to comment.