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

Use mocked AtomicU64 in IO metrics driver #4649

Merged
merged 8 commits into from May 2, 2022
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -228,6 +228,7 @@ jobs:
- powerpc64-unknown-linux-gnu
- mips-unknown-linux-gnu
- arm-linux-androideabi
- mipsel-unknown-linux-musl
steps:
- uses: actions/checkout@v2
- name: Install Rust ${{ env.rust_stable }}
Expand All @@ -242,6 +243,13 @@ jobs:
use-cross: true
command: check
args: --workspace --target ${{ matrix.target }}
Darksonn marked this conversation as resolved.
Show resolved Hide resolved
- uses: actions-rs/cargo@v1
with:
use-cross: true
command: check
args: --workspace --target ${{ matrix.target }}
Darksonn marked this conversation as resolved.
Show resolved Hide resolved
env:
RUSTFLAGS: --cfg tokio_unstable -Dwarnings

features:
name: features
Expand Down
4 changes: 4 additions & 0 deletions Cross.toml
@@ -0,0 +1,4 @@
[build.env]
passthrough = [
"RUSTFLAGS",
]