-
Notifications
You must be signed in to change notification settings - Fork 300
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
206 additions
and
296 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,160 @@ | ||
name: CI | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
push: | ||
branches: | ||
- master | ||
|
||
env: | ||
RUSTFLAGS: -Dwarnings | ||
RUST_BACKTRACE: 1 | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
# Check formatting | ||
rustfmt: | ||
name: rustfmt | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install Rust | ||
run: rustup update stable && rustup default stable | ||
- name: Check formatting | ||
run: cargo fmt --all -- --check | ||
|
||
# TODO | ||
# # Apply clippy lints | ||
# clippy: | ||
# name: clippy | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@v2 | ||
# - name: Apply clippy lints | ||
# run: cargo clippy --all-features | ||
|
||
# This represents the minimum Rust version supported by | ||
# Bytes. Updating this should be done in a dedicated PR. | ||
# | ||
# Tests are not run as tests may require newer versions of | ||
# rust. | ||
minrust: | ||
name: minrust | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install Rust | ||
run: rustup update 1.39.0 && rustup default 1.39.0 | ||
- name: Check | ||
run: . ci/test-stable.sh check | ||
|
||
# Stable | ||
test: | ||
name: test | ||
strategy: | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
- macos-latest | ||
- windows-latest | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install Rust | ||
run: rustup update stable && rustup default stable | ||
- name: Test | ||
run: . ci/test-stable.sh test | ||
|
||
# Nightly | ||
nightly: | ||
name: nightly | ||
env: | ||
# Pin nightly to avoid being impacted by breakage | ||
RUST_VERSION: nightly-2019-09-25 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install Rust | ||
run: rustup update $RUST_VERSION && rustup default $RUST_VERSION | ||
- name: Test | ||
run: . ci/test-stable.sh test | ||
|
||
# Run tests on some extra platforms | ||
cross: | ||
name: cross | ||
strategy: | ||
matrix: | ||
target: | ||
- i686-unknown-linux-gnu | ||
- armv7-unknown-linux-gnueabihf | ||
- powerpc-unknown-linux-gnu | ||
- powerpc64-unknown-linux-gnu | ||
- wasm32-unknown-unknown | ||
runs-on: ubuntu-16.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install Rust | ||
run: rustup update stable && rustup default stable | ||
- name: cross build --target ${{ matrix.target }} | ||
run: | | ||
cargo install cross | ||
cross build --target ${{ matrix.target }} | ||
if: matrix.target != 'wasm32-unknown-unknown' | ||
# WASM support | ||
- name: cargo build --target ${{ matrix.target }} | ||
run: | | ||
rustup target add ${{ matrix.target }} | ||
cargo build --target ${{ matrix.target }} | ||
if: matrix.target == 'wasm32-unknown-unknown' | ||
|
||
# Sanitizers | ||
tsan: | ||
name: tsan | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install Rust | ||
run: rustup update nightly && rustup default nightly | ||
- name: TSAN / MSAN | ||
run: . ci/tsan.sh | ||
|
||
# Loom | ||
loom: | ||
name: loom | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install Rust | ||
run: rustup update nightly && rustup default nightly | ||
- name: Loom tests | ||
run: RUSTFLAGS="--cfg loom -Dwarnings" cargo test --lib | ||
|
||
publish_docs: | ||
name: Publish Documentation | ||
needs: | ||
- rustfmt | ||
# - clippy | ||
- stable | ||
- nightly | ||
- minrust | ||
- cross | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install Rust | ||
run: rustup update stable && rustup default stable | ||
- name: Build documentation | ||
run: cargo doc --no-deps --all-features | ||
- name: Publish documentation | ||
run: | | ||
cd target/doc | ||
git init | ||
git add . | ||
git -c user.name='ci' -c user.email='ci' commit -m 'Deploy H2 API documentation' | ||
git push -f -q https://git:${{ secrets.github_token }}@github.com/${{ github.repository }} HEAD:gh-pages | ||
if: github.event_name == 'push' && github.event.ref == 'refs/heads/master' && github.repository == 'tokio-rs/bytes' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.