Skip to content

Commit

Permalink
ci: build tokio for redox-os (#5800)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewdavidmackenzie committed Jun 19, 2023
1 parent 848482d commit fb0d305
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ jobs:
- check-readme
- test-hyper
- x86_64-fortanix-unknown-sgx
- check-redox
- wasm32-unknown-unknown
- wasm32-wasi
- check-external-types
Expand Down Expand Up @@ -611,6 +612,21 @@ jobs:
run: cargo build --target x86_64-fortanix-unknown-sgx --features rt,sync
working-directory: tokio

check-redox:
name: build tokio for redox-os
needs: basics
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust ${{ env.rust_nightly }}
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.rust_nightly }}
target: x86_64-unknown-redox
- name: check tokio on redox
run: cargo check --target x86_64-unknown-redox --all-features
working-directory: tokio

wasm32-unknown-unknown:
name: test tokio for wasm32-unknown-unknown
needs: basics
Expand Down

0 comments on commit fb0d305

Please sign in to comment.