Arnout Vandecappelle | 4f863d7 | 2017-02-14 00:23:03 +0100 | [diff] [blame] | 1 | # Configuration for Gitlab-CI. |
| 2 | # Builds appear on https://gitlab.com/buildroot.org/buildroot/pipelines |
| 3 | # The .gitlab-ci.yml file is generated from .gitlab-ci.yml.in. |
| 4 | # It needs to be regenerated every time a defconfig is added, using |
| 5 | # "make .gitlab-ci.yml". |
| 6 | |
Arnout Vandecappelle | d2a151c | 2017-07-02 18:24:59 +0200 | [diff] [blame] | 7 | image: buildroot/base |
Arnout Vandecappelle | 4f863d7 | 2017-02-14 00:23:03 +0100 | [diff] [blame] | 8 | |
| 9 | .defconfig_script: &defconfig_script |
| 10 | - echo 'Configure Buildroot' |
Thomas Preston | 3e869e0 | 2017-10-23 15:26:14 +0100 | [diff] [blame] | 11 | - make ${CI_JOB_NAME} |
Arnout Vandecappelle | 4f863d7 | 2017-02-14 00:23:03 +0100 | [diff] [blame] | 12 | - echo 'Build buildroot' |
| 13 | - | |
| 14 | make > >(tee build.log |grep '>>>') 2>&1 || { |
| 15 | echo 'Failed build last output' |
| 16 | tail -200 build.log |
| 17 | exit 1 |
| 18 | } |
| 19 | |
| 20 | check-gitlab-ci.yml: |
| 21 | script: |
| 22 | - mv .gitlab-ci.yml .gitlab-ci.yml.orig |
| 23 | - make .gitlab-ci.yml |
| 24 | - diff -u .gitlab-ci.yml.orig .gitlab-ci.yml |
| 25 | |
Arnout Vandecappelle | d498aa4 | 2017-06-30 18:42:53 +0200 | [diff] [blame] | 26 | check-DEVELOPERS: |
Arnout Vandecappelle | 29ba13e | 2017-07-01 20:22:27 +0200 | [diff] [blame] | 27 | # get-developers should print just "No action specified"; if it prints |
| 28 | # anything else, it's a parse error. |
| 29 | # The initial ! is removed by YAML so we need to quote it. |
Arnout Vandecappelle | d498aa4 | 2017-06-30 18:42:53 +0200 | [diff] [blame] | 30 | script: |
Arnout Vandecappelle | 29ba13e | 2017-07-01 20:22:27 +0200 | [diff] [blame] | 31 | - "! utils/get-developers | grep -v 'No action specified'" |
Arnout Vandecappelle | d498aa4 | 2017-06-30 18:42:53 +0200 | [diff] [blame] | 32 | |
Yann E. MORIN | b58059a | 2017-11-30 00:08:45 +0100 | [diff] [blame^] | 33 | check-package: |
| 34 | script: |
| 35 | - find . -type f -name '*.mk' -exec ./utils/check-package {} + |
| 36 | |
Arnout Vandecappelle | 4f863d7 | 2017-02-14 00:23:03 +0100 | [diff] [blame] | 37 | .defconfig: &defconfig |
| 38 | # Running the defconfigs for every push is too much, so limit to |
| 39 | # explicit triggers through the API. |
| 40 | only: |
| 41 | - triggers |
| 42 | - tags |
| 43 | script: *defconfig_script |
| 44 | artifacts: |
| 45 | when: always |
| 46 | expire_in: 2 weeks |
| 47 | paths: |
| 48 | - build.log |
| 49 | - output/images/ |
| 50 | - output/build/build-time.log |
| 51 | - output/build/packages-file-list.txt |
| 52 | |
Thomas Petazzoni | b287ea6 | 2017-07-02 18:13:22 +0200 | [diff] [blame] | 53 | .runtime_test: &runtime_test |
Ricardo Martincoski | af6b583 | 2017-07-30 01:49:43 -0300 | [diff] [blame] | 54 | # Keep build directories so the rootfs can be an artifact of the job. The |
| 55 | # runner will clean up those files for us. |
Ricardo Martincoski | 3cc7bd2 | 2017-08-04 23:05:20 -0300 | [diff] [blame] | 56 | # Multiply every emulator timeout by 10 to avoid sporadic failures in |
| 57 | # elastic runners. |
Thomas Preston | 3e869e0 | 2017-10-23 15:26:14 +0100 | [diff] [blame] | 58 | script: ./support/testing/run-tests -o test-output/ -d test-dl/ -k --timeout-multiplier 10 ${CI_JOB_NAME} |
Thomas Petazzoni | b287ea6 | 2017-07-02 18:13:22 +0200 | [diff] [blame] | 59 | artifacts: |
| 60 | when: always |
| 61 | expire_in: 2 weeks |
| 62 | paths: |
| 63 | - test-output/*.log |
Ricardo Martincoski | af6b583 | 2017-07-30 01:49:43 -0300 | [diff] [blame] | 64 | - test-output/*/images/* |
Arnout Vandecappelle | 4f863d7 | 2017-02-14 00:23:03 +0100 | [diff] [blame] | 65 | acmesystems_aria_g25_128mb_defconfig: *defconfig |
| 66 | acmesystems_aria_g25_256mb_defconfig: *defconfig |
| 67 | acmesystems_arietta_g25_128mb_defconfig: *defconfig |
| 68 | acmesystems_arietta_g25_256mb_defconfig: *defconfig |
| 69 | arcturus_ucp1020_defconfig: *defconfig |
| 70 | arm_foundationv8_defconfig: *defconfig |
| 71 | arm_juno_defconfig: *defconfig |
| 72 | armadeus_apf27_defconfig: *defconfig |
| 73 | armadeus_apf28_defconfig: *defconfig |
| 74 | armadeus_apf51_defconfig: *defconfig |
Arnout Vandecappelle | 4f863d7 | 2017-02-14 00:23:03 +0100 | [diff] [blame] | 75 | at91sam9260eknf_defconfig: *defconfig |
| 76 | at91sam9g20dfc_defconfig: *defconfig |
| 77 | at91sam9g45m10ek_defconfig: *defconfig |
| 78 | at91sam9rlek_defconfig: *defconfig |
| 79 | at91sam9x5ek_defconfig: *defconfig |
Ludovic Desroches | ece884a | 2016-11-03 15:08:38 +0100 | [diff] [blame] | 80 | at91sam9x5ek_dev_defconfig: *defconfig |
| 81 | at91sam9x5ek_mmc_defconfig: *defconfig |
| 82 | at91sam9x5ek_mmc_dev_defconfig: *defconfig |
Arnout Vandecappelle (Essensium/Mind) | e46cbfc | 2017-10-06 23:41:32 +0200 | [diff] [blame] | 83 | atmel_sama5d27_som1_ek_mmc_dev_defconfig: *defconfig |
Arnout Vandecappelle | 4f863d7 | 2017-02-14 00:23:03 +0100 | [diff] [blame] | 84 | atmel_sama5d2_xplained_mmc_defconfig: *defconfig |
| 85 | atmel_sama5d2_xplained_mmc_dev_defconfig: *defconfig |
| 86 | atmel_sama5d3_xplained_defconfig: *defconfig |
| 87 | atmel_sama5d3_xplained_dev_defconfig: *defconfig |
| 88 | atmel_sama5d3_xplained_mmc_defconfig: *defconfig |
| 89 | atmel_sama5d3_xplained_mmc_dev_defconfig: *defconfig |
| 90 | atmel_sama5d3xek_defconfig: *defconfig |
| 91 | atmel_sama5d4_xplained_defconfig: *defconfig |
| 92 | atmel_sama5d4_xplained_dev_defconfig: *defconfig |
| 93 | atmel_sama5d4_xplained_mmc_defconfig: *defconfig |
| 94 | atmel_sama5d4_xplained_mmc_dev_defconfig: *defconfig |
Jagan Teki | 5f50fb8 | 2017-10-19 11:45:23 +0200 | [diff] [blame] | 95 | bananapi_m1_defconfig: *defconfig |
Arnout Vandecappelle (Essensium/Mind) | c0455ad | 2017-09-23 20:51:46 +0200 | [diff] [blame] | 96 | bananapi_m2_plus_defconfig: *defconfig |
Jörg Krause | 0ad1067 | 2017-01-13 19:54:24 +0100 | [diff] [blame] | 97 | bananapro_defconfig: *defconfig |
Arnout Vandecappelle | 4f863d7 | 2017-02-14 00:23:03 +0100 | [diff] [blame] | 98 | beagleboardx15_defconfig: *defconfig |
| 99 | beaglebone_defconfig: *defconfig |
| 100 | beaglebone_qt5_defconfig: *defconfig |
| 101 | chromebook_snow_defconfig: *defconfig |
| 102 | ci20_defconfig: *defconfig |
Thomas Petazzoni | 6520c06 | 2017-05-07 13:42:12 +0200 | [diff] [blame] | 103 | ci40_defconfig: *defconfig |
Guo Ren | 6a4131d | 2017-03-06 19:52:32 +0800 | [diff] [blame] | 104 | csky_gx6605s_defconfig: *defconfig |
Arnout Vandecappelle | 4f863d7 | 2017-02-14 00:23:03 +0100 | [diff] [blame] | 105 | cubieboard2_defconfig: *defconfig |
Jagan Teki | c6473f8 | 2017-06-23 17:56:05 +0530 | [diff] [blame] | 106 | engicam_imx6qdl_icore_defconfig: *defconfig |
Jagan Teki | c5813f2 | 2017-09-13 17:12:07 +0530 | [diff] [blame] | 107 | engicam_imx6qdl_icore_qt5_defconfig: *defconfig |
Jagan Teki | 3127e4d | 2017-06-23 17:56:06 +0530 | [diff] [blame] | 108 | engicam_imx6qdl_icore_rqs_defconfig: *defconfig |
Jagan Teki | 09c0bc7 | 2017-06-23 17:56:08 +0530 | [diff] [blame] | 109 | engicam_imx6ul_geam_defconfig: *defconfig |
Jagan Teki | 0235bc6 | 2017-06-23 17:56:09 +0530 | [diff] [blame] | 110 | engicam_imx6ul_isiot_defconfig: *defconfig |
Arnout Vandecappelle | 4f863d7 | 2017-02-14 00:23:03 +0100 | [diff] [blame] | 111 | firefly_rk3288_defconfig: *defconfig |
| 112 | firefly_rk3288_demo_defconfig: *defconfig |
| 113 | freescale_imx28evk_defconfig: *defconfig |
| 114 | freescale_imx31_3stack_defconfig: *defconfig |
| 115 | freescale_imx6dlsabreauto_defconfig: *defconfig |
| 116 | freescale_imx6dlsabresd_defconfig: *defconfig |
| 117 | freescale_imx6qsabreauto_defconfig: *defconfig |
| 118 | freescale_imx6qsabresd_defconfig: *defconfig |
| 119 | freescale_imx6sololiteevk_defconfig: *defconfig |
| 120 | freescale_imx6sxsabresd_defconfig: *defconfig |
| 121 | freescale_imx6ulevk_defconfig: *defconfig |
| 122 | freescale_imx7dsabresd_defconfig: *defconfig |
| 123 | freescale_mpc8315erdb_defconfig: *defconfig |
| 124 | freescale_p1010rdb_pa_defconfig: *defconfig |
| 125 | galileo_defconfig: *defconfig |
| 126 | gdb_bfin_bf512_defconfig: *defconfig |
| 127 | grinn_chiliboard_defconfig: *defconfig |
| 128 | grinn_liteboard_defconfig: *defconfig |
| 129 | imx23evk_defconfig: *defconfig |
Fabio Estevam | dd20bbd | 2017-09-26 13:56:48 -0300 | [diff] [blame] | 130 | imx6-sabreauto_defconfig: *defconfig |
Fabio Estevam | 206bc5a | 2017-09-27 07:28:07 -0300 | [diff] [blame] | 131 | imx6-sabresd_defconfig: *defconfig |
| 132 | imx6-sabresd_qt5_defconfig: *defconfig |
Fabio Estevam | f86d5e1 | 2017-11-14 11:18:11 -0200 | [diff] [blame] | 133 | imx6slevk_defconfig: *defconfig |
Thomas Petazzoni | 7acccf5 | 2017-11-24 08:51:56 +0100 | [diff] [blame] | 134 | imx6sx-sdb_defconfig: *defconfig |
Fabio Estevam | 475fb21 | 2017-11-23 12:38:42 -0200 | [diff] [blame] | 135 | imx6ulevk_defconfig: *defconfig |
Arnout Vandecappelle | 4f863d7 | 2017-02-14 00:23:03 +0100 | [diff] [blame] | 136 | imx6ulpico_defconfig: *defconfig |
Vanessa Maegima | 384ba85 | 2017-08-03 10:50:02 -0300 | [diff] [blame] | 137 | imx7dpico_defconfig: *defconfig |
Arnout Vandecappelle | 4f863d7 | 2017-02-14 00:23:03 +0100 | [diff] [blame] | 138 | lego_ev3_defconfig: *defconfig |
| 139 | linksprite_pcduino_defconfig: *defconfig |
| 140 | minnowboard_max-graphical_defconfig: *defconfig |
| 141 | minnowboard_max_defconfig: *defconfig |
| 142 | mx25pdk_defconfig: *defconfig |
| 143 | mx51evk_defconfig: *defconfig |
| 144 | mx53loco_defconfig: *defconfig |
| 145 | mx6cubox_defconfig: *defconfig |
| 146 | mx6sx_udoo_neo_defconfig: *defconfig |
| 147 | mx6udoo_defconfig: *defconfig |
Chakra Divi | 7de984b | 2017-07-05 21:34:15 +0530 | [diff] [blame] | 148 | nanopi_m1_defconfig: *defconfig |
Chakra Divi | b0a9ee0 | 2017-07-10 21:58:38 +0530 | [diff] [blame] | 149 | nanopi_m1_plus_defconfig: *defconfig |
Arnout Vandecappelle | 4f863d7 | 2017-02-14 00:23:03 +0100 | [diff] [blame] | 150 | nanopi_neo_defconfig: *defconfig |
| 151 | nexbox_a95x_defconfig: *defconfig |
| 152 | nitrogen6sx_defconfig: *defconfig |
| 153 | nitrogen6x_defconfig: *defconfig |
| 154 | nitrogen7_defconfig: *defconfig |
| 155 | odroidc2_defconfig: *defconfig |
Chakra Divi | d7bdee2 | 2017-06-18 21:58:09 +0530 | [diff] [blame] | 156 | olimex_a13_olinuxino_defconfig: *defconfig |
Arnout Vandecappelle | 4f863d7 | 2017-02-14 00:23:03 +0100 | [diff] [blame] | 157 | olimex_a20_olinuxino_lime2_defconfig: *defconfig |
| 158 | olimex_a20_olinuxino_lime_defconfig: *defconfig |
| 159 | olimex_a20_olinuxino_lime_mali_defconfig: *defconfig |
| 160 | olimex_a20_olinuxino_micro_defconfig: *defconfig |
| 161 | olimex_imx233_olinuxino_defconfig: *defconfig |
| 162 | openblocks_a6_defconfig: *defconfig |
| 163 | orangepi_one_defconfig: *defconfig |
| 164 | orangepi_pc_defconfig: *defconfig |
Chakra Divi | bd22ae5 | 2017-07-01 06:47:20 +0530 | [diff] [blame] | 165 | orangepi_plus_defconfig: *defconfig |
Peter Korsgaard | ca4322a | 2017-06-08 21:25:37 +0200 | [diff] [blame] | 166 | orangepi_zero_defconfig: *defconfig |
Arnout Vandecappelle | 4f863d7 | 2017-02-14 00:23:03 +0100 | [diff] [blame] | 167 | pandaboard_defconfig: *defconfig |
| 168 | pc_x86_64_bios_defconfig: *defconfig |
| 169 | pc_x86_64_efi_defconfig: *defconfig |
| 170 | qemu_aarch64_virt_defconfig: *defconfig |
| 171 | qemu_arm_versatile_defconfig: *defconfig |
| 172 | qemu_arm_versatile_nommu_defconfig: *defconfig |
| 173 | qemu_arm_vexpress_defconfig: *defconfig |
| 174 | qemu_m68k_mcf5208_defconfig: *defconfig |
| 175 | qemu_m68k_q800_defconfig: *defconfig |
| 176 | qemu_microblazebe_mmu_defconfig: *defconfig |
| 177 | qemu_microblazeel_mmu_defconfig: *defconfig |
| 178 | qemu_mips32r2_malta_defconfig: *defconfig |
| 179 | qemu_mips32r2el_malta_defconfig: *defconfig |
| 180 | qemu_mips32r6_malta_defconfig: *defconfig |
| 181 | qemu_mips32r6el_malta_defconfig: *defconfig |
| 182 | qemu_mips64_malta_defconfig: *defconfig |
| 183 | qemu_mips64el_malta_defconfig: *defconfig |
| 184 | qemu_mips64r6_malta_defconfig: *defconfig |
| 185 | qemu_mips64r6el_malta_defconfig: *defconfig |
| 186 | qemu_nios2_10m50_defconfig: *defconfig |
| 187 | qemu_or1k_defconfig: *defconfig |
| 188 | qemu_ppc64_pseries_defconfig: *defconfig |
Joel Stanley | 9d5b5b7 | 2017-09-20 12:18:45 +0930 | [diff] [blame] | 189 | qemu_ppc64le_pseries_defconfig: *defconfig |
Arnout Vandecappelle | 4f863d7 | 2017-02-14 00:23:03 +0100 | [diff] [blame] | 190 | qemu_ppc_g3beige_defconfig: *defconfig |
| 191 | qemu_ppc_mpc8544ds_defconfig: *defconfig |
| 192 | qemu_ppc_virtex_ml507_defconfig: *defconfig |
| 193 | qemu_sh4_r2d_defconfig: *defconfig |
| 194 | qemu_sh4eb_r2d_defconfig: *defconfig |
| 195 | qemu_sparc64_sun4u_defconfig: *defconfig |
| 196 | qemu_sparc_ss10_defconfig: *defconfig |
| 197 | qemu_x86_64_defconfig: *defconfig |
| 198 | qemu_x86_defconfig: *defconfig |
| 199 | qemu_xtensa_lx60_defconfig: *defconfig |
| 200 | qemu_xtensa_lx60_nommu_defconfig: *defconfig |
| 201 | raspberrypi0_defconfig: *defconfig |
| 202 | raspberrypi2_defconfig: *defconfig |
Thomas Petazzoni | 6520c06 | 2017-05-07 13:42:12 +0200 | [diff] [blame] | 203 | raspberrypi3_64_defconfig: *defconfig |
Arnout Vandecappelle | 4f863d7 | 2017-02-14 00:23:03 +0100 | [diff] [blame] | 204 | raspberrypi3_defconfig: *defconfig |
Arnout Vandecappelle (Essensium/Mind) | 73dba11 | 2017-09-26 23:49:01 +0200 | [diff] [blame] | 205 | raspberrypi3_qt5we_defconfig: *defconfig |
Arnout Vandecappelle | 4f863d7 | 2017-02-14 00:23:03 +0100 | [diff] [blame] | 206 | raspberrypi_defconfig: *defconfig |
| 207 | riotboard_defconfig: *defconfig |
| 208 | roseapplepi_defconfig: *defconfig |
| 209 | s6lx9_microboard_defconfig: *defconfig |
| 210 | sheevaplug_defconfig: *defconfig |
| 211 | snps_aarch64_vdk_defconfig: *defconfig |
Arnout Vandecappelle | 8a8fe86 | 2017-04-15 21:39:40 +0200 | [diff] [blame] | 212 | snps_arc700_axs101_defconfig: *defconfig |
| 213 | snps_archs38_axs103_defconfig: *defconfig |
Thomas Petazzoni | be95978 | 2017-05-14 13:56:38 +0200 | [diff] [blame] | 214 | snps_archs38_haps_defconfig: *defconfig |
Arnout Vandecappelle | 4f863d7 | 2017-02-14 00:23:03 +0100 | [diff] [blame] | 215 | snps_archs38_vdk_defconfig: *defconfig |
Michał Łyszczek | f82bd2c | 2017-08-02 20:03:02 +0200 | [diff] [blame] | 216 | socrates_cyclone5_defconfig: *defconfig |
Arnout Vandecappelle | 4f863d7 | 2017-02-14 00:23:03 +0100 | [diff] [blame] | 217 | stm32f429_disco_defconfig: *defconfig |
| 218 | stm32f469_disco_defconfig: *defconfig |
| 219 | telit_evk_pro3_defconfig: *defconfig |
| 220 | toradex_apalis_imx6_defconfig: *defconfig |
| 221 | ts4800_defconfig: *defconfig |
| 222 | ts4900_defconfig: *defconfig |
| 223 | ts5x00_defconfig: *defconfig |
Julien Grossholtz | 9a56487 | 2017-08-24 17:07:00 -0400 | [diff] [blame] | 224 | ts7680_defconfig: *defconfig |
Arnout Vandecappelle | 4f863d7 | 2017-02-14 00:23:03 +0100 | [diff] [blame] | 225 | wandboard_defconfig: *defconfig |
| 226 | warp7_defconfig: *defconfig |
| 227 | warpboard_defconfig: *defconfig |
| 228 | zynq_microzed_defconfig: *defconfig |
| 229 | zynq_zc706_defconfig: *defconfig |
| 230 | zynq_zed_defconfig: *defconfig |
| 231 | zynq_zybo_defconfig: *defconfig |
Thomas Petazzoni | b287ea6 | 2017-07-02 18:13:22 +0200 | [diff] [blame] | 232 | tests.core.test_post_scripts.TestPostScripts: *runtime_test |
| 233 | tests.core.test_rootfs_overlay.TestRootfsOverlay: *runtime_test |
| 234 | tests.core.test_timezone.TestGlibcAllTimezone: *runtime_test |
| 235 | tests.core.test_timezone.TestGlibcNonDefaultLimitedTimezone: *runtime_test |
| 236 | tests.core.test_timezone.TestNoTimezone: *runtime_test |
| 237 | tests.fs.test_ext.TestExt2: *runtime_test |
| 238 | tests.fs.test_ext.TestExt2r1: *runtime_test |
| 239 | tests.fs.test_ext.TestExt3: *runtime_test |
| 240 | tests.fs.test_ext.TestExt4: *runtime_test |
| 241 | tests.fs.test_iso9660.TestIso9660Grub2External: *runtime_test |
| 242 | tests.fs.test_iso9660.TestIso9660Grub2Internal: *runtime_test |
Thomas Petazzoni | b287ea6 | 2017-07-02 18:13:22 +0200 | [diff] [blame] | 243 | tests.fs.test_iso9660.TestIso9660SyslinuxExternal: *runtime_test |
| 244 | tests.fs.test_iso9660.TestIso9660SyslinuxInternal: *runtime_test |
| 245 | tests.fs.test_jffs2.TestJffs2: *runtime_test |
| 246 | tests.fs.test_squashfs.TestSquashfs: *runtime_test |
| 247 | tests.fs.test_ubi.TestUbi: *runtime_test |
| 248 | tests.fs.test_yaffs2.TestYaffs2: *runtime_test |
Yann E. MORIN | 117835d | 2017-08-02 00:52:11 +0200 | [diff] [blame] | 249 | tests.init.test_busybox.TestInitSystemBusyboxRo: *runtime_test |
| 250 | tests.init.test_busybox.TestInitSystemBusyboxRoNet: *runtime_test |
| 251 | tests.init.test_busybox.TestInitSystemBusyboxRw: *runtime_test |
| 252 | tests.init.test_busybox.TestInitSystemBusyboxRwNet: *runtime_test |
| 253 | tests.init.test_none.TestInitSystemNone: *runtime_test |
Yann E. MORIN | dd9dfb6 | 2017-08-02 00:52:24 +0200 | [diff] [blame] | 254 | tests.init.test_systemd.TestInitSystemSystemdRoFull: *runtime_test |
| 255 | tests.init.test_systemd.TestInitSystemSystemdRoIfupdown: *runtime_test |
| 256 | tests.init.test_systemd.TestInitSystemSystemdRoNetworkd: *runtime_test |
Yann E. MORIN | 117835d | 2017-08-02 00:52:11 +0200 | [diff] [blame] | 257 | tests.init.test_systemd.TestInitSystemSystemdRwFull: *runtime_test |
| 258 | tests.init.test_systemd.TestInitSystemSystemdRwIfupdown: *runtime_test |
| 259 | tests.init.test_systemd.TestInitSystemSystemdRwNetworkd: *runtime_test |
Thomas Petazzoni | b287ea6 | 2017-07-02 18:13:22 +0200 | [diff] [blame] | 260 | tests.package.test_dropbear.TestDropbear: *runtime_test |
Andrey Smirnov | d2fe268 | 2017-07-11 19:40:09 -0700 | [diff] [blame] | 261 | tests.package.test_ipython.TestIPythonPy2: *runtime_test |
| 262 | tests.package.test_ipython.TestIPythonPy3: *runtime_test |
Andrey Smirnov | 4c85d3e | 2017-07-11 19:40:05 -0700 | [diff] [blame] | 263 | tests.package.test_python.TestPython2: *runtime_test |
Andrey Smirnov | 97278eb | 2017-07-11 19:40:06 -0700 | [diff] [blame] | 264 | tests.package.test_python.TestPython3: *runtime_test |
Thomas Petazzoni | 8bbc37e | 2017-07-02 11:40:34 +0200 | [diff] [blame] | 265 | tests.toolchain.test_external.TestExternalToolchainBuildrootMusl: *runtime_test |
| 266 | tests.toolchain.test_external.TestExternalToolchainBuildrootuClibc: *runtime_test |
Arnout Vandecappelle | 6355ec2 | 2017-07-24 13:16:26 +0200 | [diff] [blame] | 267 | tests.toolchain.test_external.TestExternalToolchainCCache: *runtime_test |
Thomas Petazzoni | 8bbc37e | 2017-07-02 11:40:34 +0200 | [diff] [blame] | 268 | tests.toolchain.test_external.TestExternalToolchainCtngMusl: *runtime_test |
Thomas Petazzoni | b287ea6 | 2017-07-02 18:13:22 +0200 | [diff] [blame] | 269 | tests.toolchain.test_external.TestExternalToolchainLinaroArm: *runtime_test |
| 270 | tests.toolchain.test_external.TestExternalToolchainSourceryArmv4: *runtime_test |
| 271 | tests.toolchain.test_external.TestExternalToolchainSourceryArmv5: *runtime_test |
| 272 | tests.toolchain.test_external.TestExternalToolchainSourceryArmv7: *runtime_test |