Lines Matching +full:output +full:- +full:disable
1 # All ubuntu-22.04 jobs should run successfully in an environment
2 # setup by the scripts/ci/setup/ubuntu/build-environment.yml task
5 ubuntu-22.04-aarch64-all-linux-static:
10 - ubuntu_22.04
11 - aarch64
13 - if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~ /^staging/'
14 - if: "$AARCH64_RUNNER_AVAILABLE"
16 - mkdir build
17 - cd build
18 # Disable -static-pie due to build error with system libc:
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`
23 - make check-tcg
24 - make --output-sync -j`nproc --ignore=40` check
26 ubuntu-22.04-aarch64-all:
31 - ubuntu_22.04
32 - aarch64
34 - if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~ /^staging/'
37 - if: "$AARCH64_RUNNER_AVAILABLE"
41 - mkdir build
42 - cd build
43 - ../configure
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-without-defaults:
53 - ubuntu_22.04
54 - aarch64
56 - if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~ /^staging/'
59 - if: "$AARCH64_RUNNER_AVAILABLE"
63 - mkdir build
64 - cd build
65 - ../configure --disable-user --without-default-devices --without-default-features
66 || { cat config.log meson-logs/meson-log.txt; exit 1; }
67 - make --output-sync -j`nproc --ignore=40`
68 - make --output-sync -j`nproc --ignore=40` check
70 ubuntu-22.04-aarch64-alldbg:
75 - ubuntu_22.04
76 - aarch64
78 - if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~ /^staging/'
79 - if: "$AARCH64_RUNNER_AVAILABLE"
81 - mkdir build
82 - cd build
83 - ../configure --enable-debug
84 || { cat config.log meson-logs/meson-log.txt; exit 1; }
85 - make clean
86 - make --output-sync -j`nproc --ignore=40`
87 - make --output-sync -j`nproc --ignore=40` check
89 ubuntu-22.04-aarch64-clang:
94 - ubuntu_22.04
95 - aarch64
97 - if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~ /^staging/'
100 - if: "$AARCH64_RUNNER_AVAILABLE"
104 - mkdir build
105 - cd build
106 - ../configure --disable-libssh --cc=clang --cxx=clang++ --enable-ubsan
107 || { cat config.log meson-logs/meson-log.txt; exit 1; }
108 - make --output-sync -j`nproc --ignore=40`
109 - make --output-sync -j`nproc --ignore=40` check
111 ubuntu-22.04-aarch64-tci:
115 - ubuntu_22.04
116 - aarch64
118 - if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~ /^staging/'
121 - if: "$AARCH64_RUNNER_AVAILABLE"
125 - mkdir build
126 - cd build
127 - ../configure --enable-tcg-interpreter
128 || { cat config.log meson-logs/meson-log.txt; exit 1; }
129 - make --output-sync -j`nproc --ignore=40`
131 ubuntu-22.04-aarch64-notcg:
136 - ubuntu_22.04
137 - aarch64
139 - if: '$CI_PROJECT_NAMESPACE == "qemu-project" && $CI_COMMIT_BRANCH =~ /^staging/'
142 - if: "$AARCH64_RUNNER_AVAILABLE"
146 - mkdir build
147 - cd build
148 - ../configure --disable-tcg --with-devices-aarch64=minimal
149 || { cat config.log meson-logs/meson-log.txt; exit 1; }
150 - make --output-sync -j`nproc --ignore=40`
151 - make --output-sync -j`nproc --ignore=40` check