Skip to content

Commit

Permalink
Merge pull request #15 from rust-embedded/wg-post-transfer
Browse files Browse the repository at this point in the history
Post Transfer Updates
  • Loading branch information
posborne authored May 31, 2019
2 parents 8062b63 + b9115c6 commit 67926b0
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
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

0 comments on commit 67926b0

Please sign in to comment.