Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Post Transfer Updates #15

Merged
merged 4 commits into from
May 31, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* rust-embedded/embedded-linux
4 changes: 4 additions & 0 deletions .github/bors.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
block_labels = ["needs-decision"]
delete_merged_branches = true
required_approvals = 1
status = ["continuous-integration/travis-ci/push"]
22 changes: 22 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ env:
global:
- CRATE_NAME=gpio-cdev

branches:
only:
- master
- staging
- trying

matrix:
# TODO These are all the build jobs. Adjust as necessary. Comment out what you
# don't need
Expand All @@ -29,24 +35,40 @@ matrix:

# Linux
- env: TARGET=aarch64-unknown-linux-gnu
if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
- env: TARGET=arm-unknown-linux-gnueabi
if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
- env: TARGET=armv7-unknown-linux-gnueabihf
if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
- env: TARGET=i686-unknown-linux-gnu
if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
- env: TARGET=i686-unknown-linux-musl
if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
- env: TARGET=mips-unknown-linux-gnu
if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
- env: TARGET=mips64-unknown-linux-gnuabi64
if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
- env: TARGET=mips64el-unknown-linux-gnuabi64
if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
- env: TARGET=mipsel-unknown-linux-gnu
if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
- env: TARGET=powerpc-unknown-linux-gnu
if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
- env: TARGET=powerpc64-unknown-linux-gnu
if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
- env: TARGET=powerpc64le-unknown-linux-gnu
if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
- env: TARGET=s390x-unknown-linux-gnu DISABLE_TESTS=1
if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
- env: TARGET=x86_64-unknown-linux-gnu
if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)
- env: TARGET=x86_64-unknown-linux-musl
if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)

# Testing other channels
- env: TARGET=x86_64-unknown-linux-gnu
rust: nightly
if: (branch = staging OR branch = trying) OR (type = pull_request AND branch = master)

before_install:
- set -e
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# rust-gpio-cdev
# gpio-cdev

[![Build Status](https://travis-ci.org/posborne/rust-gpio-cdev.svg?branch=master)](https://travis-ci.org/posborne/rust-gpio-cdev)
[![Build Status](https://travis-ci.org/rust-embedded/gpio-cdev.svg?branch=master)](https://travis-ci.org/rust-embedded/gpio-cdev)
[![Version](https://img.shields.io/crates/v/gpio-cdev.svg)](https://crates.io/crates/gpio-cdev)
[![License](https://img.shields.io/crates/l/gpio-cdev.svg)](https://github.com/posborne/rust-gpio-cdev/blob/master/README.md#license)
[![License](https://img.shields.io/crates/l/gpio-cdev.svg)](https://github.com/rust-embedded/gpio-cdev/blob/master/README.md#license)

- [API Documentation](https://docs.rs/gpio-cdev)

Expand Down