1 # All ubuntu-20.04 jobs should run successfully in an environment
2 # setup by the scripts/ci/setup/qemu/build-environment.yml task
3 # "Install basic packages to build QEMU on Ubuntu 20.04"
5 ubuntu-22.04-aarch64-all-linux-static:
6 extends: .custom_artifacts_template
13 - if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~ /^staging/'
14 - if: "$AARCH64_RUNNER_AVAILABLE"
18 # Disable -static-pie due to build error with system libc:
19 # https://bugs.launchpad.net/ubuntu/+source/glibc/+bug/1987438
20 - ../configure --enable-debug --static --disable-system --disable-pie
21 || { cat config.log meson-logs/meson-log.txt; exit 1; }
22 - make --output-sync -j`nproc --ignore=40`
24 - make --output-sync -j`nproc --ignore=40` check
26 ubuntu-22.04-aarch64-all:
27 extends: .custom_artifacts_template
34 - if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~ /^staging/'
37 - if: "$AARCH64_RUNNER_AVAILABLE"
44 || { cat config.log meson-logs/meson-log.txt; exit 1; }
45 - make --output-sync -j`nproc --ignore=40`
46 - make --output-sync -j`nproc --ignore=40` check
48 ubuntu-22.04-aarch64-alldbg:
49 extends: .custom_artifacts_template
56 - if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~ /^staging/'
57 - if: "$AARCH64_RUNNER_AVAILABLE"
61 - ../configure --enable-debug
62 || { cat config.log meson-logs/meson-log.txt; exit 1; }
64 - make --output-sync -j`nproc --ignore=40`
65 - make --output-sync -j`nproc --ignore=40` check
67 ubuntu-22.04-aarch64-clang:
68 extends: .custom_artifacts_template
75 - if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~ /^staging/'
78 - if: "$AARCH64_RUNNER_AVAILABLE"
84 - ../configure --disable-libssh --cc=clang --cxx=clang++ --enable-sanitizers
85 || { cat config.log meson-logs/meson-log.txt; exit 1; }
86 - make --output-sync -j`nproc --ignore=40`
87 - make --output-sync -j`nproc --ignore=40` check
89 ubuntu-22.04-aarch64-tci:
96 - if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~ /^staging/'
99 - if: "$AARCH64_RUNNER_AVAILABLE"
105 - ../configure --enable-tcg-interpreter
106 || { cat config.log meson-logs/meson-log.txt; exit 1; }
107 - make --output-sync -j`nproc --ignore=40`
109 ubuntu-22.04-aarch64-notcg:
110 extends: .custom_artifacts_template
117 - if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~ /^staging/'
120 - if: "$AARCH64_RUNNER_AVAILABLE"
126 - ../configure --disable-tcg
127 || { cat config.log meson-logs/meson-log.txt; exit 1; }
128 - make --output-sync -j`nproc --ignore=40`
129 - make --output-sync -j`nproc --ignore=40` check