Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ci
Path: blob/main/jobs/FreeBSD-main-armv7-test/build.sh
1130 views
1
#!/bin/sh
2
3
export TARGET=arm
4
export TARGET_ARCH=armv7
5
export USE_QEMU=1
6
export QEMU_ARCH="arm"
7
export QEMU_MACHINE="virt"
8
# XXX: U-Boot gets confused with two virtio drives.
9
export QEMU_DEVICES="-device virtio-blk,drive=hd0 -device ahci,id=ahci -device ide-hd,drive=hd1,bus=ahci.0"
10
export QEMU_EXTRA_PARAM="-bios /usr/local/share/u-boot/u-boot-qemu-arm/u-boot.bin"
11
12
# U-Boot hangs with 4G.
13
export VM_MEM_SIZE="3g"
14
15
# XXX: Temporary, to compare performance results.
16
export VM_CPU_COUNT=1
17
18
export USE_TEST_SUBR="
19
disable-disks-tests.sh
20
disable-dtrace-tests.sh
21
disable-zfs-tests.sh
22
disable-notyet-tests.sh
23
run-kyua.sh
24
"
25
26
sh -x freebsd-ci/scripts/test/run-tests.sh
27
28