The goal of the libc crate is to have CI running everywhere to have the strongest guarantees about the definitions that this library contains, and as a result the CI is pretty complicated and also pretty large! Hopefully this can serve as a guide through the sea of scripts in this directory and elsewhere in this project.
First up, let's talk about the files in this directory:
run-travis.sh - a shell script run by all Travis builders, this is responsible for setting up the rest of the environment such as installing new packages, downloading Rust target libraries, etc.
run.sh - the actual script which runs tests for a particular architecture. Called from the run-travis.sh script this will run all tests for the target specified.
cargo-config - Cargo configuration of linkers to use copied into place by the run-travis.sh script before builds are run.
dox.sh - script called from run-travis.sh on only the linux 64-bit nightly Travis bots to build documentation for this crate.
landing-page-*.html - used by dox.sh to generate a landing page for all architectures' documentation.
run-qemu.sh - see discussion about QEMU below
mips, rumprun - instructions to build the docker image for each respective CI target
Currently this repository leverages a combination of Travis CI and AppVeyor for running tests. The triples tested are:
{i686,x86_64}-pc-windows-{msvc,gnu}{i686,x86_64,mips,aarch64}-unknown-linux-gnu{x86_64,aarch64}-unknown-linux-muslarm-unknown-linux-gnueabihfarm-linux-androideabi{i686,x86_64}-apple-{darwin,ios}x86_64-rumprun-netbsdx86_64-unknown-freebsdx86_64-unknown-openbsdThe Windows triples are all pretty standard, they just set up their environment then run tests, no need for downloading any extra target libs (we just download the right installer). The Intel Linux/OSX builds are similar in that we just download the right target libs and run tests. Note that the Intel Linux/OSX builds are run on stable/beta/nightly, but are the only ones that do so.
The remaining architectures look like:
Lots of the architectures tested here use QEMU in the tests, so it's worth going over all the crazy capabilities QEMU has and the various flavors in which we use it!
First up, QEMU has userspace emulation where it doesn't boot a full kernel, it just runs a binary from another architecture (using the qemu-<arch> wrappers). We provide it the runtime path for the dynamically loaded system libraries, however. This strategy is used for all Linux architectures that aren't intel. Note that one downside of this QEMU system is that threads are barely implemented, so we're careful to not spawn many threads.
For the rumprun target the only output is a kernel image, so we just use that plus the rumpbake command to create a full kernel image which is then run from within QEMU.
Finally, the fun part, the BSDs. Quite a few hoops are jumped through to get CI working for these platforms, but the gist of it looks like:
With all that in mind, the way BSD is tested looks like:
ctest library over libc to generate a Rust file and a C file which will then be compiled into the final test.There's some pretty specific instructions for setting up each image (detailed below), but the main gist of this is that we must avoid a vanilla cargo run inside of the libc-test directory (which is what it's intended for) because that would compile syntex_syntax, a large library, with userspace emulation. This invariably times out on Travis, so we can't do that.
Once all those hoops are jumped through, however, we can be happy that we're testing almost everything!
Below are some details of how to set up the initial OS images which are downloaded. Each image must be enabled have input/output over the serial console, log in automatically at the serial console, detect if a second drive in QEMU is available, and if so mount it, run a script (it'll specifically be run-qemu.sh in this folder which is copied into the generated image talked about above), and then shut down.
qemu-img create -f qcow2 FreeBSD-11.1-RELEASE-amd64.qcow2 2Gqemu-system-x86_64 -cdrom FreeBSD-11.1-RELEASE-amd64-bootonly.iso -drive if=virtio,file=FreeBSD-11.1-RELEASE-amd64.qcow2 -net nic,model=virtio -net userInstall
Continue with default keymap
Set Hostname: freebsd-ci
Distribution Select:
Network Configuration: vtnet0
Configure IPv4? Yes
DHCP? Yes
Configure IPv6? No
Resolver Configuration: Ok
Mirror Selection: Main Site
Partitioning: Auto (UFS)
Partition: Entire Disk
Partition Scheme: MBR
App Partition: Ok
Partition Editor: Finish
Confirmation: Commit
Wait for sets to install
Set the root password to nothing (press enter twice)
Set time zone to UTC
Set Date: Skip
Set Time: Skip
System Configuration:
System Hardening
Add User Accounts: No
Final Configuration: Exit
Manual Configuration: Yes
echo 'console="comconsole"' >> /boot/loader.conf
echo 'autoboot_delay="0"' >> /boot/loader.conf
echo 'ext2fs_load="YES"' >> /boot/loader.conf
Look at /etc/ttys, see what getty argument is for ttyu0 (E.g. 3wire)
Edit /etc/gettytab (with vi for example), look for ttyu0 argument, prepend :al=root to the line beneath to have the machine auto-login as root. E.g.
3wire:\
:np:nc:sp#0:
becomes:
3wire:\
:al=root:np:nc:sp#0:
Edit /root/.login and put this in it:
[ -e /dev/vtbd1 ] || exit 0 mount -t ext2fs /dev/vtbd1 /mnt sh /mnt/run.sh /mnt poweroff
Exit the post install shell: exit
Back in in the installer choose Reboot
If all went well the machine should reboot and show a login prompt. If you switch to the serial console by choosing View > serial0 in the qemu menu, you should be logged in as root.
Shutdown the machine: shutdown -p now
Helpful links
qemu-img create -f qcow2 foo.qcow2 2Gqemu -cdrom foo.iso -drive if=virtio,file=foo.qcow2 -net nic,model=virtio -net userecho 'set tty com0' >> /etc/boot.confecho 'boot' >> /etc/boot.conftty00 at the end from 'unknown off' to 'vt220 on secure'"/root/foo.sh" as the shell/root/foo.sh#!/bin/sh exec 1>/dev/tty00 exec 2>&1 if mount -t ext2fs /dev/sd1c /mnt; then sh /mnt/run.sh /mnt shutdown -ph now fi # limited shell... exec /bin/sh < /dev/tty00
chmod +x /root/foo.shHelpful links:
Hopefully that's at least somewhat of an introduction to everything going on here, and feel free to ping @alexcrichton with questions!