blob: 17d6cb3e458ab75d6c1853988f8c2403256122a3 [file] [log] [blame]
Philippe Mathieu-Daudéecac85f2021-05-19 20:54:58 +02001include:
2 - local: '/.gitlab-ci.d/crossbuild-template.yml'
Thomas Huth6bcb5fc2020-07-31 08:38:23 +02003
4cross-armel-system:
Philippe Mathieu-Daudéb62ea742020-12-07 14:15:00 +01005 extends: .cross_system_build_job
Daniel P. Berrangé764a0742021-02-16 13:29:53 +00006 needs:
7 job: armel-debian-cross-container
Thomas Huth6bcb5fc2020-07-31 08:38:23 +02008 variables:
9 IMAGE: debian-armel-cross
10
11cross-armel-user:
Philippe Mathieu-Daudéb62ea742020-12-07 14:15:00 +010012 extends: .cross_user_build_job
Daniel P. Berrangé764a0742021-02-16 13:29:53 +000013 needs:
14 job: armel-debian-cross-container
Thomas Huth6bcb5fc2020-07-31 08:38:23 +020015 variables:
16 IMAGE: debian-armel-cross
17
18cross-armhf-system:
Philippe Mathieu-Daudéb62ea742020-12-07 14:15:00 +010019 extends: .cross_system_build_job
Daniel P. Berrangé764a0742021-02-16 13:29:53 +000020 needs:
21 job: armhf-debian-cross-container
Thomas Huth6bcb5fc2020-07-31 08:38:23 +020022 variables:
23 IMAGE: debian-armhf-cross
24
25cross-armhf-user:
Philippe Mathieu-Daudéb62ea742020-12-07 14:15:00 +010026 extends: .cross_user_build_job
Daniel P. Berrangé764a0742021-02-16 13:29:53 +000027 needs:
28 job: armhf-debian-cross-container
Thomas Huth6bcb5fc2020-07-31 08:38:23 +020029 variables:
30 IMAGE: debian-armhf-cross
31
32cross-arm64-system:
Philippe Mathieu-Daudéb62ea742020-12-07 14:15:00 +010033 extends: .cross_system_build_job
Daniel P. Berrangé764a0742021-02-16 13:29:53 +000034 needs:
35 job: arm64-debian-cross-container
Thomas Huth6bcb5fc2020-07-31 08:38:23 +020036 variables:
37 IMAGE: debian-arm64-cross
38
39cross-arm64-user:
Philippe Mathieu-Daudéb62ea742020-12-07 14:15:00 +010040 extends: .cross_user_build_job
Daniel P. Berrangé764a0742021-02-16 13:29:53 +000041 needs:
42 job: arm64-debian-cross-container
Thomas Huth6bcb5fc2020-07-31 08:38:23 +020043 variables:
44 IMAGE: debian-arm64-cross
45
Thomas Huthee381b72020-12-15 09:34:51 +010046cross-i386-system:
47 extends: .cross_system_build_job
Daniel P. Berrangé764a0742021-02-16 13:29:53 +000048 needs:
49 job: i386-fedora-cross-container
Thomas Huthee381b72020-12-15 09:34:51 +010050 variables:
51 IMAGE: fedora-i386-cross
52 MAKE_CHECK_ARGS: check-qtest
53
54cross-i386-user:
55 extends: .cross_user_build_job
Daniel P. Berrangé764a0742021-02-16 13:29:53 +000056 needs:
57 job: i386-fedora-cross-container
Thomas Huthee381b72020-12-15 09:34:51 +010058 variables:
59 IMAGE: fedora-i386-cross
60 MAKE_CHECK_ARGS: check
61
Richard Henderson840cafc2021-05-02 16:57:27 -070062cross-i386-tci:
63 extends: .cross_accel_build_job
64 timeout: 60m
65 variables:
66 IMAGE: fedora-i386-cross
67 ACCEL: tcg-interpreter
68 EXTRA_CONFIGURE_OPTS: --target-list=i386-softmmu,i386-linux-user,aarch64-softmmu,aarch64-linux-user,ppc-softmmu,ppc-linux-user
69 MAKE_CHECK_ARGS: check check-tcg
70
Thomas Huth6bcb5fc2020-07-31 08:38:23 +020071cross-mips-system:
Philippe Mathieu-Daudéb62ea742020-12-07 14:15:00 +010072 extends: .cross_system_build_job
Daniel P. Berrangé764a0742021-02-16 13:29:53 +000073 needs:
74 job: mips-debian-cross-container
Thomas Huth6bcb5fc2020-07-31 08:38:23 +020075 variables:
76 IMAGE: debian-mips-cross
77
78cross-mips-user:
Philippe Mathieu-Daudéb62ea742020-12-07 14:15:00 +010079 extends: .cross_user_build_job
Daniel P. Berrangé764a0742021-02-16 13:29:53 +000080 needs:
81 job: mips-debian-cross-container
Thomas Huth6bcb5fc2020-07-31 08:38:23 +020082 variables:
83 IMAGE: debian-mips-cross
84
85cross-mipsel-system:
Philippe Mathieu-Daudéb62ea742020-12-07 14:15:00 +010086 extends: .cross_system_build_job
Daniel P. Berrangé764a0742021-02-16 13:29:53 +000087 needs:
88 job: mipsel-debian-cross-container
Thomas Huth6bcb5fc2020-07-31 08:38:23 +020089 variables:
90 IMAGE: debian-mipsel-cross
91
92cross-mipsel-user:
Philippe Mathieu-Daudéb62ea742020-12-07 14:15:00 +010093 extends: .cross_user_build_job
Daniel P. Berrangé764a0742021-02-16 13:29:53 +000094 needs:
95 job: mipsel-debian-cross-container
Thomas Huth6bcb5fc2020-07-31 08:38:23 +020096 variables:
97 IMAGE: debian-mipsel-cross
98
99cross-mips64el-system:
Philippe Mathieu-Daudéb62ea742020-12-07 14:15:00 +0100100 extends: .cross_system_build_job
Daniel P. Berrangé764a0742021-02-16 13:29:53 +0000101 needs:
102 job: mips64el-debian-cross-container
Thomas Huth6bcb5fc2020-07-31 08:38:23 +0200103 variables:
104 IMAGE: debian-mips64el-cross
105
106cross-mips64el-user:
Philippe Mathieu-Daudéb62ea742020-12-07 14:15:00 +0100107 extends: .cross_user_build_job
Daniel P. Berrangé764a0742021-02-16 13:29:53 +0000108 needs:
109 job: mips64el-debian-cross-container
Thomas Huth6bcb5fc2020-07-31 08:38:23 +0200110 variables:
111 IMAGE: debian-mips64el-cross
112
113cross-ppc64el-system:
Philippe Mathieu-Daudéb62ea742020-12-07 14:15:00 +0100114 extends: .cross_system_build_job
Daniel P. Berrangé764a0742021-02-16 13:29:53 +0000115 needs:
116 job: ppc64el-debian-cross-container
Thomas Huth6bcb5fc2020-07-31 08:38:23 +0200117 variables:
118 IMAGE: debian-ppc64el-cross
119
120cross-ppc64el-user:
Philippe Mathieu-Daudéb62ea742020-12-07 14:15:00 +0100121 extends: .cross_user_build_job
Daniel P. Berrangé764a0742021-02-16 13:29:53 +0000122 needs:
123 job: ppc64el-debian-cross-container
Thomas Huth6bcb5fc2020-07-31 08:38:23 +0200124 variables:
125 IMAGE: debian-ppc64el-cross
126
Richard Henderson9f620252021-09-17 17:23:26 +0100127# The riscv64 cross-builds currently use a 'sid' container to get
128# compilers and libraries. Until something more stable is found we
129# allow_failure so as not to block CI.
130cross-riscv64-system:
131 extends: .cross_system_build_job
132 allow_failure: true
133 needs:
134 job: riscv64-debian-cross-container
135 variables:
136 IMAGE: debian-riscv64-cross
137
138cross-riscv64-user:
139 extends: .cross_user_build_job
140 allow_failure: true
141 needs:
142 job: riscv64-debian-cross-container
143 variables:
144 IMAGE: debian-riscv64-cross
145
Thomas Huth6bcb5fc2020-07-31 08:38:23 +0200146cross-s390x-system:
Philippe Mathieu-Daudéb62ea742020-12-07 14:15:00 +0100147 extends: .cross_system_build_job
Daniel P. Berrangé764a0742021-02-16 13:29:53 +0000148 needs:
149 job: s390x-debian-cross-container
Thomas Huth6bcb5fc2020-07-31 08:38:23 +0200150 variables:
151 IMAGE: debian-s390x-cross
152
153cross-s390x-user:
Philippe Mathieu-Daudéb62ea742020-12-07 14:15:00 +0100154 extends: .cross_user_build_job
Daniel P. Berrangé764a0742021-02-16 13:29:53 +0000155 needs:
156 job: s390x-debian-cross-container
Thomas Huth6bcb5fc2020-07-31 08:38:23 +0200157 variables:
158 IMAGE: debian-s390x-cross
159
Philippe Mathieu-Daudéb16999a2020-12-07 14:15:02 +0100160cross-s390x-kvm-only:
161 extends: .cross_accel_build_job
Daniel P. Berrangé764a0742021-02-16 13:29:53 +0000162 needs:
163 job: s390x-debian-cross-container
Philippe Mathieu-Daudéb16999a2020-12-07 14:15:02 +0100164 variables:
165 IMAGE: debian-s390x-cross
Richard Hendersone4af2162021-05-02 16:57:26 -0700166 EXTRA_CONFIGURE_OPTS: --disable-tcg
Philippe Mathieu-Daudéb16999a2020-12-07 14:15:02 +0100167
Philippe Mathieu-Daudé1c135142021-04-18 17:33:52 +0200168cross-mips64el-kvm-only:
169 extends: .cross_accel_build_job
170 needs:
171 job: mips64el-debian-cross-container
172 variables:
173 IMAGE: debian-mips64el-cross
Richard Hendersone4af2162021-05-02 16:57:26 -0700174 EXTRA_CONFIGURE_OPTS: --disable-tcg --target-list=mips64el-softmmu
Philippe Mathieu-Daudé1c135142021-04-18 17:33:52 +0200175
Thomas Huth6bcb5fc2020-07-31 08:38:23 +0200176cross-win32-system:
Philippe Mathieu-Daudéb62ea742020-12-07 14:15:00 +0100177 extends: .cross_system_build_job
Daniel P. Berrangé764a0742021-02-16 13:29:53 +0000178 needs:
179 job: win32-fedora-cross-container
Thomas Huth6bcb5fc2020-07-31 08:38:23 +0200180 variables:
Thomas Huth93cc0502020-09-25 16:40:21 +0100181 IMAGE: fedora-win32-cross
Daniel P. Berrangéa1f0f362021-08-10 15:06:53 +0100182 CROSS_SKIP_TARGETS: alpha-softmmu avr-softmmu hppa-softmmu m68k-softmmu
183 microblazeel-softmmu mips64el-softmmu nios2-softmmu
Gerd Hoffmann8619b5d2021-06-23 11:11:35 +0200184 artifacts:
185 paths:
186 - build/qemu-setup*.exe
Thomas Huth6bcb5fc2020-07-31 08:38:23 +0200187
188cross-win64-system:
Philippe Mathieu-Daudéb62ea742020-12-07 14:15:00 +0100189 extends: .cross_system_build_job
Daniel P. Berrangé764a0742021-02-16 13:29:53 +0000190 needs:
191 job: win64-fedora-cross-container
Thomas Huth6bcb5fc2020-07-31 08:38:23 +0200192 variables:
Thomas Huth93cc0502020-09-25 16:40:21 +0100193 IMAGE: fedora-win64-cross
Daniel P. Berrangéa1f0f362021-08-10 15:06:53 +0100194 CROSS_SKIP_TARGETS: or1k-softmmu rx-softmmu sh4eb-softmmu sparc64-softmmu
195 tricore-softmmu xtensaeb-softmmu
Gerd Hoffmann8619b5d2021-06-23 11:11:35 +0200196 artifacts:
197 paths:
198 - build/qemu-setup*.exe
Philippe Mathieu-Daudé84eda112020-12-07 14:15:03 +0100199
200cross-amd64-xen-only:
201 extends: .cross_accel_build_job
Daniel P. Berrangé764a0742021-02-16 13:29:53 +0000202 needs:
203 job: amd64-debian-cross-container
Philippe Mathieu-Daudé84eda112020-12-07 14:15:03 +0100204 variables:
205 IMAGE: debian-amd64-cross
206 ACCEL: xen
Richard Hendersone4af2162021-05-02 16:57:26 -0700207 EXTRA_CONFIGURE_OPTS: --disable-tcg --disable-kvm
Philippe Mathieu-Daudé84eda112020-12-07 14:15:03 +0100208
209cross-arm64-xen-only:
210 extends: .cross_accel_build_job
Daniel P. Berrangé764a0742021-02-16 13:29:53 +0000211 needs:
212 job: arm64-debian-cross-container
Philippe Mathieu-Daudé84eda112020-12-07 14:15:03 +0100213 variables:
214 IMAGE: debian-arm64-cross
215 ACCEL: xen
Richard Hendersone4af2162021-05-02 16:57:26 -0700216 EXTRA_CONFIGURE_OPTS: --disable-tcg --disable-kvm