Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 2 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,15 +98,6 @@ jobs:
shell: powershell
if: matrix.os == 'windows-latest' && matrix.lang == 'moonbit'

# Run (now legacy) crate tests. This'll eventually go away
- run: |
cargo test \
-p wit-bindgen-cli \
-p wit-bindgen-${{ matrix.lang }} \
--no-default-features \
--features ${{ matrix.lang }} \
--release

# Run all codegen tests for this language
- run: |
cargo run test --languages ${{ matrix.lang }} tests/codegen \
Expand All @@ -116,7 +107,7 @@ jobs:
# Run all runtime tests for this language, and also enable Rust in case this
# language only implements either the runner or test component
- run: |
cargo run test --languages rust,${{ matrix.lang }} tests/runtime-new \
cargo run test --languages rust,${{ matrix.lang }} tests/runtime \
--artifacts target/artifacts \
--rust-wit-bindgen-path ./crates/guest-rust

Expand All @@ -130,6 +121,7 @@ jobs:
- name: Install Rust
run: rustup update stable --no-self-update && rustup default stable
- run: rustup target add wasm32-wasip1
- run: cargo test
- run: cargo test -p wit-bindgen-core
- run: cargo test -p wit-bindgen
- run: cargo test --workspace --exclude 'wit-bindgen*'
Expand Down
Loading