Skip to content

Commit

Permalink
Add a nightly FreeBSD Cirrus-CI task
Browse files Browse the repository at this point in the history
  • Loading branch information
gnzlbg committed May 24, 2019
1 parent b722d8c commit 5653a60
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,25 @@ freebsd_instance:
image: freebsd-11-1-release-amd64

task:
# This name gets reported as a build status in GitHub
name: stable x86_64-unknown-freebsd
setup_script:
- pkg install -y curl
- curl https://sh.rustup.rs -sSf --output rustup.sh
- sh rustup.sh -y
- . $HOME/.cargo/env
- rustup default stable
test_script:
- . $HOME/.cargo/env
- sh ci/run.sh x86_64-unknown-freebsd

task:
name: nightly x86_64-unknown-freebsd
setup_script:
- pkg install -y curl
- curl https://sh.rustup.rs -sSf --output rustup.sh
- sh rustup.sh -y
- . $HOME/.cargo/env
- rustup default nightly
test_script:
- . $HOME/.cargo/env
- cd libc-test
- cargo test
- sh ci/run.sh x86_64-unknown-freebsd

0 comments on commit 5653a60

Please sign in to comment.