1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934
|
name: Build and test Qbs
on:
push:
paths-ignore:
- 'changelogs/**'
- 'doc/**'
jobs:
build-linux:
name: ${{ matrix.config.name }}
runs-on: ubuntu-latest
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
config:
- {
name: 'Build on Linux (Noble, gcc)',
image: 'noble-qt6',
options: 'modules.cpp.compilerWrapper:ccache
modules.qbs.debugInformation:true
products.qbs_archive.targetName:qbs-linux-noble-${{ github.run_id }}
products.qbs_archive.includeTests:true',
script: './scripts/build-qbs-with-qbs.sh',
cacheid: 'gcc-qt6-noble',
suffix: 'linux-noble',
}
env:
BUILD_OPTIONS: ${{ matrix.config.options }}
WITH_TESTS: 0
steps:
- uses: actions/checkout@v1
- name: Create .ccache dir
run: mkdir -p ~/.ccache
- name: prepare timestamp
id: get-timestamp
run: echo "timestamp=$(date -u +"%Y-%m-%dT%H:%M:%SZ")" >> $GITHUB_OUTPUT
shell: bash
- name: ccache cache files
uses: actions/cache@v4
with:
path: ~/.ccache
key: ${{ runner.os }}-${{ matrix.config.cacheid }}-ccache-${{ steps.get-timestamp.outputs.timestamp }}
restore-keys: ${{ runner.os }}-${{ matrix.config.cacheid }}-ccache
- name: Pull the Docker Image
run: docker compose pull ${{ matrix.config.image }}
- name: Print ccache stats
run: docker compose run ${{ matrix.config.image }} ccache -s
- name: Build Qbs
run: docker compose run ${{ matrix.config.image }} ${{ matrix.config.script }}
- name: Print ccache stats
run: docker compose run ${{ matrix.config.image }} ccache -s
- name: Upload artifacts
uses: 'actions/upload-artifact@v4'
with:
name: qbs-${{ matrix.config.suffix }}-${{ github.run_id }}.tar.gz
path: release/qbs-${{ matrix.config.suffix }}-${{ github.run_id }}.tar.gz
build-linux-extra:
name: ${{ matrix.config.name }}
runs-on: ubuntu-latest
timeout-minutes: 90
strategy:
fail-fast: false
matrix:
config:
- {
name: 'Build on Linux (clang_tidy)',
script: './scripts/run-analyzer.sh',
image: 'noble-qt6',
options: 'profile:qt-clang_64 modules.cpp.compilerWrapper:ccache',
cacheid: 'clang',
}
- {
name: 'Build on Linux (CMake)',
script: './scripts/build-qbs-with-cmake.sh',
image: 'noble-qt6',
cacheid: 'cmake',
}
- {
name: 'Build on Linux (gcc, ASAN)',
image: 'noble-qt6',
script: './scripts/build-qbs-with-qbs.sh',
options: 'modules.cpp.compilerWrapper:ccache
modules.qbsbuildconfig.enableAddressSanitizer:true
modules.qbs.debugInformation:true',
cacheid: 'gcc-asan',
}
- {
name: 'Build on Linux (gcc, UBSAN)',
image: 'noble-qt6',
script: './scripts/build-qbs-with-qbs.sh',
options: 'modules.cpp.compilerWrapper:ccache
modules.qbsbuildconfig.enableUbSanitizer:true
modules.qbs.debugInformation:true',
cacheid: 'gcc-ubsan',
}
- {
name: 'Build on Linux (gcc, Qt 5.15)',
image: 'noble-qt5',
script: './scripts/build-qbs-with-qbs.sh',
options: 'modules.cpp.compilerWrapper:ccache
modules.qbs.debugInformation:true',
cacheid: 'gcc-qt5',
}
env:
BUILD_OPTIONS: ${{ matrix.config.options }}
QTEST_FUNCTION_TIMEOUT: 9000000
steps:
- uses: actions/checkout@v1
- name: Create .ccache dir
run: mkdir -p ~/.ccache
- name: prepare timestamp
id: get-timestamp
run: echo "timestamp=$(date -u +"%Y-%m-%dT%H:%M:%SZ")" >> $GITHUB_OUTPUT
shell: bash
- name: ccache cache files
uses: actions/cache@v4
with:
path: ~/.ccache
key: ${{ runner.os }}-${{ matrix.config.cacheid }}-ccache-${{ steps.get-timestamp.outputs.timestamp }}
restore-keys: ${{ runner.os }}-${{ matrix.config.cacheid }}-ccache
- name: Setup Coredumps
run: |
sudo bash -c 'echo "/cores/core.%e.%t.%p" > /proc/sys/kernel/core_pattern'
sudo mkdir /cores
sudo chmod 777 /cores
- name: Pull the Docker Image
run: docker compose pull ${{ matrix.config.image }}
- name: Print ccache stats
run: docker compose run ${{ matrix.config.image }} ccache -s
- name: Build Qbs
run: docker compose run ${{ matrix.config.image }} ${{ matrix.config.script }}
- name: Print ccache stats
run: docker compose run ${{ matrix.config.image }} ccache -s
- name: Coredump on failure
if: ${{ failure() }}
run: docker compose run ${{ matrix.config.image }} ./scripts/print-cores.sh
clang-format:
name: Check Style
runs-on: macos-13
timeout-minutes: 60
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v1
- name: Update PATH
run: echo "$(brew --prefix llvm@15)/bin" >> ${GITHUB_PATH}
- name: Run clang-format
run: |
git diff -U0 --no-color --relative HEAD^ | $(brew --prefix llvm@15)/share/clang/clang-format-diff.py -i -p1 -regex ".*\.(cxx|cpp|hpp|h)" -v
- name: Check diff
run: git diff --exit-code
build-macos:
name: ${{ matrix.config.name }}
runs-on: ${{ matrix.config.runner }}
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
config:
- {
name: 'Build on macOS (Qbs, arm64)',
runner: 'macos-14',
profile: 'xcode_15_1-macosx-arm64',
toolchain: 'clang_64',
script: './scripts/build-qbs-with-qbs.sh',
options: 'modules.cpp.compilerWrapper:ccache
modules.qbs.debugInformation:true
modules.qbsbuildconfig.enableAddressSanitizer:false
products.qbs_archive.targetName:qbs-macos-arm64-${{ github.run_id }}
products.qbs_archive.includeTests:true',
cacheid: 'clang-arm64',
with_tests: 0,
suffix: 'macos-arm64',
}
- {
name: 'Build on macOS (Qbs, x64)',
runner: 'macos-13',
profile: 'xcode_15_1-macosx-x86_64',
toolchain: 'clang_64',
script: './scripts/build-qbs-with-qbs.sh',
options: 'modules.cpp.compilerWrapper:ccache
modules.qbs.debugInformation:true
modules.qbsbuildconfig.enableAddressSanitizer:false
products.qbs_archive.targetName:qbs-macos-${{ github.run_id }}
products.qbs_archive.includeTests:true',
cacheid: 'clang',
with_tests: 0,
suffix: 'macos',
}
- {
name: 'Build on macOS (CMake, x64)',
runner: 'macos-13',
profile: 'xcode_15_1-macosx-x86_64',
toolchain: 'clang_64',
script: './scripts/build-qbs-with-cmake.sh',
options: '',
cacheid: 'clang-cmake',
with_tests: 0,
suffix: 'macos',
}
env:
BUILD_OPTIONS: ${{ matrix.config.options }}
WITH_TESTS: ${{ matrix.config.with_tests }}
steps:
- uses: actions/checkout@v1
- name: Create .ccache dir
run: mkdir -p ~/.ccache
- name: prepare timestamp
id: get-timestamp
run: echo "timestamp=$(date -u +"%Y-%m-%dT%H:%M:%SZ")" >> $GITHUB_OUTPUT
shell: bash
- name: ccache cache files
uses: actions/cache@v4
with:
path: ~/.ccache
key: ${{ runner.os }}-${{ matrix.config.cacheid }}-ccache-${{ steps.get-timestamp.outputs.timestamp }}
restore-keys: ${{ runner.os }}-${{ matrix.config.cacheid }}-ccache
- name: Install required packages
run: brew install ccache
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install beautifulsoup4 lxml
- name: Install Qt
uses: ./.github/actions/download-qt
with:
toolchain: ${{ matrix.config.toolchain }}
- name: Install Qt Creator
uses: ./.github/actions/download-qtc
- name: Setup Qbs
run: |
qbs setup-toolchains --detect
qbs setup-qt --detect
qbs config profiles.qt.baseProfile ${{ matrix.config.profile }}
qbs config defaultProfile qt
qbs config --list
- name: Print ccache stats
run: ccache -s
- name: Build Qbs
run: ${{ matrix.config.script }}
- name: Print ccache stats
run: ccache -s
- name: Upload artifacts
uses: 'actions/upload-artifact@v4'
if: matrix.config.cacheid != 'clang-cmake'
with:
name: qbs-${{ matrix.config.suffix }}-${{ github.run_id }}.tar.gz
path: release/qbs-${{ matrix.config.suffix }}-${{ github.run_id }}.tar.gz
build-windows:
name: ${{ matrix.config.name }}
runs-on: windows-2022
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
config:
- {
name: 'Build on Windows (Qbs)',
script: './scripts/build-qbs-with-qbs.sh',
options: 'modules.cpp.compilerWrapper:clcache
modules.qbs.debugInformation:true
modules.qbsbuildconfig.enableAddressSanitizer:false
products.qbs_archive.targetName:qbs-windows-${{ github.run_id }}
products.qbs_archive.includeTests:true',
cacheid: 'msvc',
with_tests: 0,
suffix: 'windows',
qmake: 'qmake.exe',
}
- {
name: 'Build on Windows (CMake)',
script: './scripts/build-qbs-with-cmake.sh',
options: '',
cacheid: 'msvc-cmake',
with_tests: 0,
suffix: 'windows-cmake',
qmake: 'qmake.exe',
}
env:
BUILD_OPTIONS: ${{ matrix.config.options }}
WITH_TESTS: ${{ matrix.config.with_tests }}
QT_ASSUME_STDERR_HAS_CONSOLE: 1
steps:
- uses: actions/checkout@v1
- name: prepare timestamp
id: get-timestamp
run: echo "timestamp=$(date -u +"%Y-%m-%dT%H:%M:%SZ")" >> $GITHUB_OUTPUT
shell: bash
- name: clcache cache files
uses: actions/cache@v4
with:
path: ~/clcache
key: ${{ runner.os }}-${{ matrix.config.cacheid }}-clcache-${{ steps.get-timestamp.outputs.timestamp }}
restore-keys: ${{ runner.os }}-msvc-clcache
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install required packages
run: |
python -m pip install --upgrade pip
pip install beautifulsoup4 lxml
pip install git+https://github.com/frerich/clcache.git@cae73d8255d78db8ba11e23c51fd2c9a89e7475b
- name: Install Ninja
run: choco install ninja
shell: bash
- name: Install Qt
uses: ./.github/actions/download-qt
with:
toolchain: win64_msvc2022_64
- name: Install Qbs
uses: ./.github/actions/download-qbs
- name: Setup self-signed certificate
run: |
New-SelfSignedCertificate -DnsName qbs@community.test -Type CodeSigning -CertStoreLocation cert:\CurrentUser\My
shell: powershell
- uses: TheMrMilchmann/setup-msvc-dev@v3
with:
arch: x64
- name: Test qmake
run: |
echo "$PATH"
echo "qmake: ${{ matrix.config.qmake }}"
echo "qmake: $(which ${{ matrix.config.qmake }})"
echo "qmake\\path: $(where ${{ matrix.config.qmake }})"
echo "qmake/path: $(cygpath $(where ${{ matrix.config.qmake }}))"
shell: bash
- name: Setup Qbs
run: |
qbs setup-toolchains --detect
qbs setup-qt $(which qmake).exe qt
qbs config profiles.qt.baseProfile MSVC2022-1-x86_x64
qbs config defaultProfile qt
qbs config --list
shell: bash
- name: Print clcache stats
run: clcache -s
- name: Build Qbs
run: ${{ matrix.config.script }}
shell: bash
- name: Print clcache stats
run: clcache -s
- name: Upload artifacts
uses: 'actions/upload-artifact@v4'
with:
name: qbs-${{ matrix.config.suffix }}-${{ github.run_id }}.zip
path: release/qbs-${{ matrix.config.suffix }}-${{ github.run_id }}.zip
build-windows-mingw:
name: Build on Windows (MinGW)
runs-on: windows-2022
timeout-minutes: 60
env:
BUILD_OPTIONS: |
modules.cpp.compilerWrapper:ccache
modules.qbsbuildconfig.enableAddressSanitizer:false
products.qbs_archive.targetName:qbs-windows-mingw-${{ github.run_id }}
products.qbs_archive.includeTests:true,
QT_ASSUME_STDERR_HAS_CONSOLE: 1
WITH_TESTS: 0
CCACHE_DIR: ${{ github.workspace }}\ccache
steps:
- uses: actions/checkout@v1
- name: prepare timestamp
id: get-timestamp
run: echo "timestamp=$(date -u +"%Y-%m-%dT%H:%M:%SZ")" >> $GITHUB_OUTPUT
shell: bash
- name: ccache cache files
uses: actions/cache@v4
with:
path: ~/.ccache
key: ${{ runner.os }}-mingw-ccache-${{ steps.get-timestamp.outputs.timestamp }}
restore-keys: ${{ runner.os }}-mingw-ccache
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install required packages
run: |
choco install ccache
python -m pip install --upgrade pip
pip install beautifulsoup4 lxml
- name: Install Qt
uses: ./.github/actions/download-qt
with:
toolchain: win64_mingw
- name: Install Qbs
uses: ./.github/actions/download-qbs
- name: Install MinGW
uses: ./.github/actions/download-mingw
- name: Setup Qbs
run: |
qbs setup-toolchains --type mingw $(which g++).exe mingw-qt
qbs setup-qt $(which qmake).exe qt
qbs config profiles.qt.baseProfile mingw-qt
qbs config defaultProfile qt
qbs config --list
shell: bash
- name: Print ccache stats
run: ccache -s
- name: Build Qbs
run: scripts/build-qbs-with-qbs.sh
shell: bash
- name: Print ccache stats
run: ccache -s
- name: Upload artifacts
uses: 'actions/upload-artifact@v4'
with:
name: qbs-windows-mingw-${{ github.run_id }}.zip
path: release/qbs-windows-mingw-${{ github.run_id }}.zip
test-linux:
name: ${{ matrix.config.name }}
runs-on: ubuntu-latest
timeout-minutes: 90
needs: build-linux
strategy:
fail-fast: false
matrix:
config:
- {
name: 'Test Linux (gcc, Qt 6)',
image: 'noble-qt6',
suffix: 'linux-noble',
profile: 'qt-gcc_64',
script: './scripts/test-qbs.sh',
}
- {
name: 'Test Linux (clang, Qt 6)',
image: 'noble-qt6',
suffix: 'linux-noble',
profile: 'qt-clang_64',
script: './scripts/test-qbs.sh',
}
- {
name: 'Test Linux (gcc, Qt 6, static)',
image: 'noble-qt6-static',
suffix: 'linux-noble',
profile: 'qt-gcc_64',
script: './scripts/test-qbs.sh',
}
- {
name: 'Test Linux (gcc, Qt 5)',
image: 'noble-qt5',
suffix: 'linux-noble',
profile: 'qt-gcc_64',
script: './scripts/test-qt.sh',
}
- {
name: 'Test Android (Qt 6.5)',
image: 'noble-android-65',
suffix: 'linux-noble',
profile: '',
script: './scripts/test-qt-for-android.sh',
}
- {
name: 'Test Android (Qt 5.15)',
image: 'noble-android-515',
suffix: 'linux-noble',
profile: '',
script: './scripts/test-qt-for-android.sh',
}
- {
name: 'Test Android (ndk r25)',
image: 'noble-android-ndk-r25',
suffix: 'linux-noble',
profile: '',
script: './scripts/test-for-android.sh',
}
- {
name: 'Test WebAssembly',
image: 'noble-qt6-wasm',
suffix: 'linux-noble',
profile: '',
script: './scripts/test-wasm.sh',
}
env:
QBS_TEST_SOURCE_ROOT: 'tests'
QBS_AUTOTEST_PROFILE: ${{ matrix.config.profile }}
QTEST_FUNCTION_TIMEOUT: 9000000
steps:
- uses: actions/checkout@v1
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: qbs-${{ matrix.config.suffix }}-${{ github.run_id }}.tar.gz
path: ./
- name: Unpack artifact
run: mkdir -p release/install-root/ && tar xzf qbs-${{ matrix.config.suffix }}-${{ github.run_id }}.tar.gz -C release/install-root/
- name: Setup Coredumps
run: |
sudo bash -c 'echo "/cores/core.%e.%t.%p" > /proc/sys/kernel/core_pattern'
sudo mkdir /cores
sudo chmod 777 /cores
- name: Pull the Docker Image
run: docker compose pull ${{ matrix.config.image }}
- name: Run tests
run: docker compose run ${{ matrix.config.image }} ${{ matrix.config.script }} release/install-root/usr/local/bin
- name: Coredump on failure
if: ${{ failure() }}
run: docker compose run ${{ matrix.config.image }} ./scripts/print-cores.sh
test-baremetal:
name: Test Baremetal (Linux)
runs-on: ubuntu-latest
timeout-minutes: 60
needs: build-linux
env:
QBS_TEST_SOURCE_ROOT: 'tests'
steps:
- uses: actions/checkout@v1
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: qbs-linux-noble-${{ github.run_id }}.tar.gz
path: ./
- name: Unpack artifact
run: mkdir -p release/install-root/ && tar xzf qbs-linux-noble-${{ github.run_id }}.tar.gz -C release/install-root/
- name: Pull the Docker Image
run: docker compose pull noble-baremetal
- name: arm-none-eabi-gcc-13_2
run: QBS_AUTOTEST_PROFILE=arm-none-eabi-gcc-13_2 docker compose run noble-baremetal scripts/test-baremetal.sh release/install-root/usr/local/bin
- name: avr-gcc-7_3
run: QBS_AUTOTEST_PROFILE=avr-gcc-7_3 docker compose run noble-baremetal scripts/test-baremetal.sh release/install-root/usr/local/bin
- name: riscv64-unknown-elf-gcc-13_2
run: QBS_AUTOTEST_PROFILE=riscv64-unknown-elf-gcc-13_2 docker compose run noble-baremetal scripts/test-baremetal.sh release/install-root/usr/local/bin
- name: sdcc-4_0_0-hcs8
run: QBS_AUTOTEST_PROFILE=sdcc-4_2_0-hcs8 docker compose run noble-baremetal scripts/test-baremetal.sh release/install-root/usr/local/bin
- name: sdcc-4_0_0-mcs51
run: QBS_AUTOTEST_PROFILE=sdcc-4_2_0-mcs51 docker compose run noble-baremetal scripts/test-baremetal.sh release/install-root/usr/local/bin
- name: sdcc-4_0_0-stm8
run: QBS_AUTOTEST_PROFILE=sdcc-4_2_0-stm8 docker compose run noble-baremetal scripts/test-baremetal.sh release/install-root/usr/local/bin
- name: xtensa-lx106-elf-gcc-13_2
run: QBS_AUTOTEST_PROFILE=xtensa-lx106-elf-gcc-13_2 docker compose run noble-baremetal scripts/test-baremetal.sh release/install-root/usr/local/bin
test-macos:
name: ${{ matrix.config.name }}
runs-on: ${{ matrix.config.runner }}
timeout-minutes: 60
needs: build-macos
env:
QTEST_FUNCTION_TIMEOUT: 9000000
QBS_AUTOTEST_PROFILE: 'qt'
QBS_TEST_SOURCE_ROOT: 'tests'
QBS_EXTRA_GRPC_LIBS: 'absl_cord,absl_cordz_handle,absl_cordz_info,absl_synchronization,grpc,gpr'
strategy:
fail-fast: false
matrix:
config:
- {
name: 'Test macOS (Xcode 16.4, arm64)',
runner: 'macos-15',
target: 'desktop',
toolchain: 'clang_64',
xcodeVersion: '16.4',
testProfile: 'xcode_16_4-macosx-arm64',
qtVersion: '6.8.3',
suffix: 'macos-arm64',
script: './scripts/test-qbs.sh',
}
- {
name: 'Test iOS (Xcode 16.4, arm64)',
runner: 'macos-15',
target: 'ios',
toolchain: 'ios',
xcodeVersion: '16.4',
testProfile: 'xcode_16_4-iphoneos-arm64',
qtVersion: '6.8.3',
suffix: 'macos-arm64',
script: './scripts/test-qbs.sh',
}
- {
name: 'Test iOS-sim (Xcode 16.4, x64)',
runner: 'macos-15',
target: 'ios',
toolchain: 'ios',
xcodeVersion: '16.4',
# Qt does not support arm64 simulators,
# see https://bugreports.qt.io/browse/QTBUG-101276
testProfile: 'xcode_16_4-iphonesimulator-x86_64',
qtVersion: '6.8.3',
suffix: 'macos-arm64',
script: './scripts/test-qbs.sh',
}
- {
name: 'Test macOS (Xcode 15.1, x64)',
runner: 'macos-13',
target: 'desktop',
toolchain: 'clang_64',
xcodeVersion: '15.1',
testProfile: 'xcode_15_1-macosx-x86_64',
qtVersion: '6.8.3',
suffix: 'macos',
script: './scripts/test-qbs.sh',
}
- {
name: 'Test macOS (Xcode 15.1, Qt 5.15, x64)',
runner: 'macos-13',
target: 'desktop',
toolchain: 'clang_64',
xcodeVersion: '15.1',
testProfile: 'xcode_15_1-macosx-x86_64',
qtVersion: '5.15.2',
suffix: 'macos',
script: './scripts/test-qt.sh',
}
- {
name: 'Test macOS (Xcode 15.4, arm64)',
runner: 'macos-14',
target: 'desktop',
toolchain: 'clang_64',
xcodeVersion: '15.4',
testProfile: 'xcode_15_4-macosx-arm64',
qtVersion: '6.8.3',
suffix: 'macos-arm64',
script: './scripts/test-qbs.sh',
}
- {
name: 'Test macOS (Xcode 14.3.1, x64)',
runner: 'macos-13',
target: 'desktop',
toolchain: 'clang_64',
xcodeVersion: '14.3.1',
testProfile: 'xcode_14_3_1-macosx-x86_64',
qtVersion: '6.8.3',
suffix: 'macos',
script: './scripts/test-qbs.sh',
}
- {
name: 'Test macOS (Xcode-less, arm64)',
runner: 'macos-15',
target: 'desktop',
toolchain: 'clang_64',
xcodeVersion: '',
testProfile: 'clang',
qtVersion: '6.8.3',
suffix: 'macos-arm64',
script: './scripts/test-qbs.sh',
}
steps:
- uses: actions/checkout@v1
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: qbs-${{ matrix.config.suffix }}-${{ github.run_id }}.tar.gz
path: ./
- name: Unpack artifact
run: mkdir -p release/install-root/ && tar xzf qbs-${{ matrix.config.suffix }}-${{ github.run_id }}.tar.gz -C release/install-root/
- name: Update PATH
run: echo "./release/install-root/usr/local/bin" >> $GITHUB_PATH
- name: Install required packages
run: brew install capnp ccache grpc icoutils makensis protobuf
- name: Set up Python
uses: actions/setup-python@v5
if: matrix.config.toolchain == 'clang_64'
with:
python-version: 3.12
- name: Install Conan
if: matrix.config.toolchain == 'clang_64'
uses: turtlebrowser/get-conan@main
- name: Setup Conan
if: matrix.config.toolchain == 'clang_64'
run: ./scripts/setup-conan-profiles.sh
- name: Install Host Qt
if: matrix.config.toolchain == 'ios'
uses: ./.github/actions/download-qt
with:
target: 'desktop'
toolchain: 'clang_64'
version: ${{ matrix.config.qtVersion }}
- name: Install Qt
uses: ./.github/actions/download-qt
with:
target: ${{ matrix.config.target }}
toolchain: ${{ matrix.config.toolchain }}
version: ${{ matrix.config.qtVersion }}
- name: Select Xcode
run: sudo xcode-select --switch /Applications/Xcode_${{ matrix.config.xcodeVersion }}.app
if: matrix.config.xcodeVersion != ''
- name: Setup Qbs
run: |
qbs setup-toolchains --detect
qbs setup-qt $(which qmake) qt
qbs config profiles.qt.baseProfile ${{ matrix.config.testProfile }}
qbs config defaultProfile qt
qbs config --list
if: matrix.config.xcodeVersion != ''
- name: Setup Qbs (Xcode-less)
run: |
qbs setup-toolchains $(brew --prefix llvm@18)/bin/clang ${{ matrix.config.testProfile }}
qbs config profiles.${{ matrix.config.testProfile }}.qbs.architecture arm64
qbs setup-qt $(which qmake) qt
qbs config profiles.qt.baseProfile ${{ matrix.config.testProfile }}
qbs config defaultProfile qt
qbs config --list
if: matrix.config.xcodeVersion == ''
- name: Run Tests
run: |
sudo chmod 777 /cores
ulimit -c unlimited
${{ matrix.config.script }} ./release/install-root/usr/local/bin
- name: Coredump on failure
if: ${{ failure() }}
run: |
for f in $(find /cores -maxdepth 1 -name 'core.*' -print); do
lldb --core $f --batch --one-line "bt all"
done;
test-windows:
name: ${{ matrix.config.name }}
runs-on: windows-2022
timeout-minutes: 60
needs: build-windows
strategy:
fail-fast: false
matrix:
config:
- {
name: 'Test Windows (MSVC 2022, x64)',
target: 'desktop',
toolchain: 'win64_msvc2022_64',
testProfile: 'MSVC2022-x64',
conan_toolchain: 'msvc_64',
qtVersion: '6.8.3',
script: './scripts/test-qbs.sh',
qmake: 'qmake.exe',
}
- {
name: 'Test Windows (MSVC 2022, arm64)',
target: 'desktop',
toolchain: 'win64_msvc2022_arm64_cross_compiled',
testProfile: 'MSVC2022-x64_arm64',
conan_toolchain: '',
qtVersion: '6.8.3',
script: './scripts/test-qbs.sh',
qmake: 'qmake.bat',
}
- {
name: 'Test Windows (MSVC 2022, Qt 5.15)',
target: 'desktop',
toolchain: 'win64_msvc2019_64',
testProfile: 'MSVC2022-x64',
conan_toolchain: '',
qtVersion: '5.15.2',
script: './scripts/test-qt.sh',
qmake: 'qmake.exe',
}
- {
name: 'Test Windows (clang-cl)',
target: 'desktop',
toolchain: 'win64_msvc2022_64',
testProfile: 'clang-cl-x86_64',
conan_toolchain: '',
qtVersion: '6.8.3',
script: './scripts/test-qbs.sh',
qmake: 'qmake.exe',
}
- {
name: 'Test Windows (MinGW)',
target: 'desktop',
toolchain: 'win64_mingw',
testProfile: 'mingw-qt',
conan_toolchain: 'mingw_64',
qtVersion: '6.5.0',
script: './scripts/test-qbs.sh',
qmake: 'qmake.exe',
}
env:
QTEST_FUNCTION_TIMEOUT: 9000000
QBS_AUTOTEST_PROFILE: 'qt'
QBS_TEST_SOURCE_ROOT: 'tests'
QT_ASSUME_STDERR_HAS_CONSOLE: 1
steps:
- uses: actions/checkout@v1
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: qbs-windows-${{ github.run_id }}.zip
path: ./
- name: Unpack artifact
run: |
mkdir -p release/install-root
cd release/install-root
7z x ../../qbs-windows-${{ github.run_id }}.zip
shell: bash
- name: Update PATH
run: echo "./release/install-root/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: Install required packages
run: choco install -y pkgconfiglite --download-checksum=6004df17818f5a6dbf19cb335cc92702
continue-on-error: true # pkgconfiglite installation is flaky
- name: Install Qt
uses: ./.github/actions/download-qt
with:
toolchain: ${{ matrix.config.toolchain }}
version: ${{ matrix.config.qtVersion }}
- name: Install Host Qt
if: matrix.config.toolchain == 'win64_msvc2022_arm64_cross_compiled'
uses: ./.github/actions/download-qt
with:
target: 'desktop'
toolchain: 'win64_msvc2022_64'
version: ${{ matrix.config.qtVersion }}
- name: Install MinGW
uses: ./.github/actions/download-mingw
- name: Install Ninja
if: matrix.config.conan_toolchain != ''
run: |
choco install ninja
shell: bash
- name: Install Conan
if: matrix.config.conan_toolchain != ''
uses: turtlebrowser/get-conan@main
- name: Configure Conan
if: matrix.config.conan_toolchain != ''
run: |
./scripts/setup-conan-profiles.sh --toolchain ${{ matrix.config.conan_toolchain }}
which ninja
shell: bash
- name: Setup Qbs
run: |
qbs setup-toolchains --detect
qbs setup-toolchains --type mingw $(which g++).exe mingw-qt
qbs setup-qt $(cygpath $(where ${{ matrix.config.qmake }})) qt
qbs config profiles.qt.baseProfile ${{ matrix.config.testProfile }}
qbs config defaultProfile qt
qbs config --list
shell: bash
- name: Setup self-signed certificate
run: |
New-SelfSignedCertificate -DnsName qbs@community.test -Type CodeSigning -CertStoreLocation cert:\CurrentUser\My
shell: powershell
- name: Run Tests
run: ${{ matrix.config.script }} ./release/install-root/bin
shell: bash
test-windows-extra:
name: ${{ matrix.config.name }}
runs-on: windows-latest
timeout-minutes: 60
needs: build-windows
strategy:
fail-fast: false
matrix:
config:
- {
name: 'Test Windows (OpenWatcom DOS 32 bit)',
testProfile: 'watcom-2_0_0-dos-x86',
script: './scripts/test-baremetal.sh',
}
- {
name: 'Test Windows (OpenWatcom DOS 16 bit)',
testProfile: 'watcom-2_0_0-dos-x86_16',
script: './scripts/test-baremetal.sh',
}
- {
name: 'Test Windows (OpenWatcom OS/2 32 bit)',
testProfile: 'watcom-2_0_0-os2-x86',
script: './scripts/test-baremetal.sh',
}
- {
name: 'Test Windows (OpenWatcom OS/2 16 bit)',
testProfile: 'watcom-2_0_0-os2-x86_16',
script: './scripts/test-baremetal.sh',
}
- {
name: 'Test Windows (OpenWatcom Windows 32 bit)',
testProfile: 'watcom-2_0_0-windows-x86',
script: './scripts/test-baremetal.sh',
}
- {
name: 'Test Windows (OpenWatcom Windows 16 bit)',
testProfile: 'watcom-2_0_0-windows-x86_16',
script: './scripts/test-baremetal.sh',
}
- {
name: 'Test Windows (DigitalMars DOS 16 bit)',
testProfile: 'dmc-8_57_0-dos-x86_16',
script: './scripts/test-baremetal.sh',
}
- {
name: 'Test Windows (DigitalMars Windows 32 bit)',
testProfile: 'dmc-8_57_0-windows-x86',
script: './scripts/test-baremetal.sh',
}
- {
name: 'Test Windows (DigitalMars Windows 16 bit)',
testProfile: 'dmc-8_57_0-windows-x86_16',
script: './scripts/test-baremetal.sh',
}
env:
QTEST_FUNCTION_TIMEOUT: 9000000
QBS_AUTOTEST_PROFILE: 'extra'
QBS_TEST_SOURCE_ROOT: 'tests'
QT_ASSUME_STDERR_HAS_CONSOLE: 1
steps:
- uses: actions/checkout@v1
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: qbs-windows-${{ github.run_id }}.zip
path: ./
- name: Unpack artifact
run: |
mkdir -p release/install-root
cd release/install-root
7z x ../../qbs-windows-${{ github.run_id }}.zip
shell: bash
- name: Update PATH
run: echo "./release/install-root/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- name: Install OpenWatcom
uses: ./.github/actions/download-ow
- name: Install DigitalMars
uses: ./.github/actions/download-dm
- name: Setup Qbs
run: |
qbs setup-toolchains --detect
qbs config profiles.extra.baseProfile ${{ matrix.config.testProfile }}
qbs config defaultProfile extra
qbs config --list
shell: bash
- name: Run Tests
run: ${{ matrix.config.script }} ./release/install-root/bin
shell: bash
|