Skip to content

Commit 01b2be3

Browse files
committed
Auto merge of #1167 - asomers:cirrus, r=alexcrichton
Move FreeBSD testing from Travis/QEMU to Cirrus-CI Fixes #1163
2 parents 728f6e0 + 3f0fff5 commit 01b2be3

File tree

3 files changed

+14
-16
lines changed

3 files changed

+14
-16
lines changed

.cirrus.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
freebsd_instance:
2+
image: freebsd-11-1-release-amd64
3+
4+
task:
5+
# This name gets reported as a build status in GitHub
6+
name: stable x86_64-unknown-freebsd
7+
setup_script:
8+
- pkg install -y curl
9+
- curl https://sh.rustup.rs -sSf --output rustup.sh
10+
- sh rustup.sh -y
11+
test_script:
12+
- . $HOME/.cargo/env
13+
- cd libc-test
14+
- cargo test

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,6 @@ matrix:
7878
- env: TARGET=x86_64-unknown-linux-gnux32 OPT="--release"
7979
rust: nightly
8080

81-
# QEMU based targets that compile in an emulator
82-
- env: TARGET=x86_64-unknown-freebsd
83-
8481
- env: TARGET=wasm32-unknown-unknown
8582
install: rustup target add $TARGET
8683
script: cargo build --no-default-features --target $TARGET --release

ci/docker/x86_64-unknown-freebsd/Dockerfile

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)