Skip to content

Commit

Permalink
Add rust-unit-tests-windows
Browse files Browse the repository at this point in the history
  • Loading branch information
webmaster128 committed Jan 2, 2022
1 parent 3e213d8 commit e04e56e
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,26 @@ jobs:
command: make test-safety
- run: make build-go

rust-unit-tests-windows:
executor:
name: win/default
shell: powershell.exe
steps:
- checkout
- run:
name: Install Rustup
command: choco install rustup.install
- run:
name: Install Rust
command: rustup default 1.55.0
- run:
name: Show Rust version information
command: rustc --version; cargo --version; rustup --version
- run:
name: Run unit tests
working_directory: libwasmvm
command: cargo test

# Note: this is pretty limited right now because it only tests the checked-in
# wasmvm.dll without rebuilding it.
test-windows:
Expand Down Expand Up @@ -301,6 +321,7 @@ workflows:
- tidy-go
- format-scripts
- lint-scripts
- rust-unit-tests-windows
- test-windows
- build_shared_library:
filters: # required since other jobs with tag filters require this one
Expand Down

0 comments on commit e04e56e

Please sign in to comment.