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

build: one cargo workspace for the repo #133

Merged
merged 22 commits into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
7cf1906
build: one cargo workspace for the repo
mattyg Dec 19, 2024
2798fd8
chore: move tests from module -> wasmer_sys to avoid public glob rexp…
mattyg Dec 19, 2024
8ba0b55
chore: root workspace includes test crate
mattyg Dec 19, 2024
89d85ea
chore: changelog
mattyg Dec 19, 2024
7f8ae9c
Merge branch 'main' into chore/one-workspace
mattyg Dec 19, 2024
b3787b8
chore: missed a cargo.lock
mattyg Dec 19, 2024
50bd5a2
chore: move building test wasms before testing root workspace
mattyg Dec 19, 2024
067fb8e
refactor: instead of nesting crates within "test" crate, move all to …
mattyg Dec 19, 2024
cecca25
chore: rename test_wasm to test_wasm_core to clarify which crates are…
mattyg Dec 19, 2024
1287eba
chore: changelog clarity
mattyg Dec 19, 2024
71cc10d
fix: path to test crate
mattyg Dec 19, 2024
2e43788
chore: fix bench paths, remove unused script
mattyg Dec 19, 2024
c9e7d6e
fix: windows tests
mattyg Dec 19, 2024
e8274e7
wip: debug windows file path
mattyg Dec 19, 2024
81ae4a1
fix: normalize file path formatting on windows and explain with comment
mattyg Dec 19, 2024
a386df5
chore: fmt
mattyg Dec 19, 2024
44cdb17
chore: long arg
mattyg Dec 20, 2024
21d0d6a
chore: move example wasms into test-crates/wasms dir, use workspace f…
mattyg Dec 20, 2024
83eec5b
Revert "chore: move example wasms into test-crates/wasms dir, use wor…
mattyg Dec 20, 2024
d2d18c7
chore: move example wasms into test-crates/wasms dir
mattyg Dec 20, 2024
abcdab4
chore: move tests of default behavior of 'wasm_error!()' into common …
mattyg Dec 20, 2024
40088c0
chore: fmt + clippy
mattyg Dec 20, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,4 @@ jobs:
shell: pwsh
run: |
$env:LLVM_SYS_180_PREFIX="$(pwd)/.llvm"
cargo test --release --manifest-path test/Cargo.toml --no-default-features --features ${{ matrix.wasmer-feature }} -- --nocapture
cargo test --release -p tests --no-default-features --features ${{ matrix.wasmer-feature }} -- --nocapture
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## [Unreleased]

- Removed separate cargo workspaces for `crates/guest` and `test` and separate cargo projects for test wasms. Now all crates are members of a single cargo workspace.

## [0.0.96]

### Changed
Expand Down
Loading
Loading