summaryrefslogtreecommitdiff
path: root/.cirrus.yml
Commit message (Collapse)AuthorAgeFilesLines
* Add FreeBSD10 supportgnzlbg2019-09-161-0/+14
| | | | | This adds libc-test support for Freebsd10 and a CI build job that tests FreeBSD10 with LIBC_CI only.
* Test FreeBSD 12 on latest nightlyMateusz MikuĊ‚a2019-09-111-1/+1
|
* Fix the nightly FreeBSD12 toolchain to one without the build.rs buggnzlbg2019-09-061-1/+1
|
* Test ABI without LIBC_CI on all supported FreeBSD versionsgnzlbg2019-08-141-15/+2
|
* Add a build task for FreeBSD11 without LIBC_CIgnzlbg2019-08-141-2/+17
|
* Switch FreeBSD's CI image to stable/11Alan Somers2019-08-071-1/+1
| | | | | | The 11.3-release GCE image isn't working due to a bug in the included py36-google-compute-engine package, but that bug is fixed in the latest stable/11 images.
* Upgrade FreeBSD's CI image to release 11.3Alan Somers2019-08-071-1/+1
|
* Add a FreeBSD 12 build job and test FreeBSD12 APIsgnzlbg2019-05-241-7/+8
| | | | | | | | | | | | | | | | | | | | | This commits adds a second FreeBSD 12 build job, and splits the implementation of the FreeBSD module into two modules, one for FreeBSD 11, and one for FreeBSD 12. The FreeBSD 11 module is compiled always by default, and is mostly forward compatible with FreeBSD 12 systems. The FreeBSD 12 module is only built for now in libc's CI, and uses FreeBSD 12 data types and APIs, linking to symbols that are only available in FreeBSD 12. Basically, when LIBC_CI env variable is defined, and the host system is a FreeBSD 12 system, then the FreeBSD 12 module is automatically built and tested. Conditional compilation is done using a `cfg(freebsd12)` flag. This commit also re-enables many tests, and documents why some remain disabled.
* Add a nightly FreeBSD Cirrus-CI taskgnzlbg2019-05-241-3/+15
|
* Move FreeBSD testing from Travis/QEMU to Cirrus-CIAlan Somers2018-12-071-0/+14
Fixes #1163