summaryrefslogtreecommitdiff
path: root/bors.toml
AgeCommit message (Collapse)Author
2021-09-04Check Dragonfly BSD and OpenBSD in CIAlan Somers
Build, but don't test, for these operating systems. Thanks to @rtzoeller for the tip. Also, fix the OpenBSD build.
2021-08-26Fix borsAlan Somers
bors got broken by a spelling change in .cirrus.yml in d20fe20af79cc6fa4528a8a170ad50a1319a1fbf that wasn't propagated to bors.toml.
2021-08-22Multiple CI improvements:Alan Somers
* Install cross the easy way, via cargo * Don't test in release mode. Nix contains no release-dependent paths, and release mode testing has to my knowledge never revealed a bug in Nix. * Add Linux powerpc back to CI, fixed by the latest cross. * Check the tests even on platforms that can't run them. * DRY for the Illumos and Redox sections * Cross-check iOS from a Linux VM instead of OSX * Revert the workaround for rust-lang/rustup issue 2774
2021-08-18[skip ci] Fix bors configurationAlan Somers
* I never removed 32-bit OSX and iOS targets that were removed from Cirrus in PR #1492 . * I never added Fuchsia (PR #1285) . * I never added illumos (PR #1394) . * never added Linux x32 (PR #1366) .
2020-12-18Fix duplicate entry in bors.tomlAlan Somers
Also, sort the entries alphabetically, since that's how Github displays them.
2020-12-10[skip ci] Update docs and build badges for the Travis -> Cirrus moveAlan Somers
2020-12-06Switch all builds from Travis to CirrusAlan Somers
Travis has been super-slow lately (> 6 hours per build). Cirrus is much faster: about 20 minutes. Cirrus also has slightly better test coverage, mainly because it doesn't use SECCOMP. Also, * Fix the Redox CI build. The old Travis configuration didn't actually build for Redox, so we never noticed that Redox can't be built with a stable compiler. Thanks to @coolreader18 for finding this. * Disable the udp_offload tests on cross-tested platforms. These tests are failing with ENOPROTOOPT in Cirrus-CI. I suspect it's due to a lack of support in QEMU. These tests were skipped on Travis because its kernel was too old. * Fix require_kernel_version on Cirrus-CI. Cirrus reports the Linux kernel version as 4.19.112+, which the semver crate can't handle. * Fix test_setfsuid on Cirrus. When run on Cirrus, it seems like the file in /tmp gets deleted as soon as it's closed. Probably an overzealous temporary file cleaner. Use /var/tmp, because no temporary file cleaner should run in there. * Skip mount tests on Cirrus. They fail for an unknown reason. Issue #1351 * Skip the AF_ALG tests on Cirrus-CI Issue #1352
2020-07-03Update the FreeBSD test image to 11.4-releaseAlan Somers
2020-04-19Update the FreeBSD CI image to an 11.3 snapshotAlan Somers
11.2 is EOL.
2018-12-29Switch FreeBSD CI builds from BuildBot to cirrus-ci.comAlan Somers
This change does the following: 1) Adds a CI build on cirrus-ci.com 2) Switches FreeBSD's CI from a jail to a full VM 3) Switches FreeBSD i386's CI from a 32-bit jail to simply using a cross-compiled binary on a 64-bit VM. 4) Switches FreeBSD i386's CI from using stable rust to 1.24.1 (back when I added buildbot, rustup didn't support i686-unknown-freebsd) 5) Switches bors to gate on cirrus-ci rather than buildbot This change does _not_ disable buildbot. That must happen outside of git. Fixes #996
2017-07-29Move i686-unknown-freebsd builds from Travis to BuildBotAlan Somers
2017-07-29Change the FreeBSD builder's name to "amd64_fbsd11"Alan Somers
2017-06-04Integrate the FreeBSD BuildBotAlan Somers
* Gate Bors on the FreeBSD 11 build * Remove the testless FreeBSD build from Travis * Promote x86_64-unknown-freebsd to Tier 1 Fixes #603
2017-04-18Raise the bors timeout to four hoursMichael Howell
bors's timeout should always be twice a long as the test suite takes. This is to allow Travis to fast-fail a test; if one of the builders immediately reports a failure, then bors will move on to the next batch, leaving the slower builders to work through the already-doomed run and the next one. At the time this was written, nix's test suite took about an hour to run. The timeout was raised to four hours, instead of two, to give nix room to grow and time for delays on Travis's end.
2017-04-15Replace homu with bors-ngKamal Marhubi
@homu has served us well, but is unmaintained. bors will serve us in its stead. Fixes https://github.com/nix-rust/nix/issues/580