blob: f10168db2ed74bdf10b054a6d4b3da58b6829167 [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
127cross-s390x-system:
Philippe Mathieu-Daudéb62ea742020-12-07 14:15:00 +0100128 extends: .cross_system_build_job
Daniel P. Berrangé764a0742021-02-16 13:29:53 +0000129 needs:
130 job: s390x-debian-cross-container
Thomas Huth6bcb5fc2020-07-31 08:38:23 +0200131 variables:
132 IMAGE: debian-s390x-cross
133
134cross-s390x-user:
Philippe Mathieu-Daudéb62ea742020-12-07 14:15:00 +0100135 extends: .cross_user_build_job
Daniel P. Berrangé764a0742021-02-16 13:29:53 +0000136 needs:
137 job: s390x-debian-cross-container
Thomas Huth6bcb5fc2020-07-31 08:38:23 +0200138 variables:
139 IMAGE: debian-s390x-cross
140
Philippe Mathieu-Daudéb16999a2020-12-07 14:15:02 +0100141cross-s390x-kvm-only:
142 extends: .cross_accel_build_job
Daniel P. Berrangé764a0742021-02-16 13:29:53 +0000143 needs:
144 job: s390x-debian-cross-container
Philippe Mathieu-Daudéb16999a2020-12-07 14:15:02 +0100145 variables:
146 IMAGE: debian-s390x-cross
Richard Hendersone4af2162021-05-02 16:57:26 -0700147 EXTRA_CONFIGURE_OPTS: --disable-tcg
Philippe Mathieu-Daudéb16999a2020-12-07 14:15:02 +0100148
Philippe Mathieu-Daudé1c135142021-04-18 17:33:52 +0200149cross-mips64el-kvm-only:
150 extends: .cross_accel_build_job
151 needs:
152 job: mips64el-debian-cross-container
153 variables:
154 IMAGE: debian-mips64el-cross
Richard Hendersone4af2162021-05-02 16:57:26 -0700155 EXTRA_CONFIGURE_OPTS: --disable-tcg --target-list=mips64el-softmmu
Philippe Mathieu-Daudé1c135142021-04-18 17:33:52 +0200156
Thomas Huth6bcb5fc2020-07-31 08:38:23 +0200157cross-win32-system:
Philippe Mathieu-Daudéb62ea742020-12-07 14:15:00 +0100158 extends: .cross_system_build_job
Daniel P. Berrangé764a0742021-02-16 13:29:53 +0000159 needs:
160 job: win32-fedora-cross-container
Thomas Huth6bcb5fc2020-07-31 08:38:23 +0200161 variables:
Thomas Huth93cc0502020-09-25 16:40:21 +0100162 IMAGE: fedora-win32-cross
Daniel P. Berrangéa1f0f362021-08-10 15:06:53 +0100163 CROSS_SKIP_TARGETS: alpha-softmmu avr-softmmu hppa-softmmu m68k-softmmu
164 microblazeel-softmmu mips64el-softmmu nios2-softmmu
Gerd Hoffmann8619b5d2021-06-23 11:11:35 +0200165 artifacts:
166 paths:
167 - build/qemu-setup*.exe
Thomas Huth6bcb5fc2020-07-31 08:38:23 +0200168
169cross-win64-system:
Philippe Mathieu-Daudéb62ea742020-12-07 14:15:00 +0100170 extends: .cross_system_build_job
Daniel P. Berrangé764a0742021-02-16 13:29:53 +0000171 needs:
172 job: win64-fedora-cross-container
Thomas Huth6bcb5fc2020-07-31 08:38:23 +0200173 variables:
Thomas Huth93cc0502020-09-25 16:40:21 +0100174 IMAGE: fedora-win64-cross
Daniel P. Berrangéa1f0f362021-08-10 15:06:53 +0100175 CROSS_SKIP_TARGETS: or1k-softmmu rx-softmmu sh4eb-softmmu sparc64-softmmu
176 tricore-softmmu xtensaeb-softmmu
Gerd Hoffmann8619b5d2021-06-23 11:11:35 +0200177 artifacts:
178 paths:
179 - build/qemu-setup*.exe
Philippe Mathieu-Daudé84eda112020-12-07 14:15:03 +0100180
181cross-amd64-xen-only:
182 extends: .cross_accel_build_job
Daniel P. Berrangé764a0742021-02-16 13:29:53 +0000183 needs:
184 job: amd64-debian-cross-container
Philippe Mathieu-Daudé84eda112020-12-07 14:15:03 +0100185 variables:
186 IMAGE: debian-amd64-cross
187 ACCEL: xen
Richard Hendersone4af2162021-05-02 16:57:26 -0700188 EXTRA_CONFIGURE_OPTS: --disable-tcg --disable-kvm
Philippe Mathieu-Daudé84eda112020-12-07 14:15:03 +0100189
190cross-arm64-xen-only:
191 extends: .cross_accel_build_job
Daniel P. Berrangé764a0742021-02-16 13:29:53 +0000192 needs:
193 job: arm64-debian-cross-container
Philippe Mathieu-Daudé84eda112020-12-07 14:15:03 +0100194 variables:
195 IMAGE: debian-arm64-cross
196 ACCEL: xen
Richard Hendersone4af2162021-05-02 16:57:26 -0700197 EXTRA_CONFIGURE_OPTS: --disable-tcg --disable-kvm