Implement select
.
#4250
Workflow file for this run
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
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
name: Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
build: [macos-latest] | |
include: | |
- build: macos-latest | |
os: macos-latest | |
rust: stable | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: ./.github/actions/install-rust | |
with: | |
toolchain: ${{ matrix.rust }} | |
- name: Configure Cargo target | |
run: | | |
echo CARGO_BUILD_TARGET=${{ matrix.target }} >> $GITHUB_ENV | |
rustup target add ${{ matrix.target }} | |
if: matrix.target != '' | |
- run: | | |
cargo test --verbose --features=all-apis --release --workspace --test=event -- --nocapture | |
cargo test --verbose --features=all-apis --release --workspace --test=fs -- --nocapture | |
cargo test --verbose --features=all-apis --release --workspace --test=io -- --nocapture | |
cargo test --verbose --features=all-apis --release --workspace --test=mm -- --nocapture | |
cargo test --verbose --features=all-apis --release --workspace --test=param -- --nocapture | |
cargo test --verbose --features=all-apis --release --workspace --test=net -- --nocapture | |
cargo test --verbose --features=all-apis --release --workspace --test=path -- --nocapture | |
cargo test --verbose --features=all-apis --release --workspace --test=rand -- --nocapture | |
cargo test --verbose --features=all-apis --release --workspace --test=termios -- --nocapture | |
cargo test --verbose --features=all-apis --release --workspace --test=system -- --nocapture | |
cargo test --verbose --features=all-apis --release --workspace --test=pipe -- --nocapture | |
cargo test --verbose --features=all-apis --release --workspace --test=stdio -- --nocapture | |
cargo test --verbose --features=all-apis --release --workspace --test=thread -- --nocapture | |
cargo test --verbose --features=all-apis --release --workspace --test=time -- --nocapture | |
#cargo test --verbose --features=all-apis --release --workspace --test=process -- --nocapture | |
env: | |
RUST_BACKTRACE: full | |
MACOSX_DEPLOYMENT_TARGET: 10.7 | |
MACOSX_SDK_VERSION: 10.7 | |