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
54 changes: 51 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ members = [
"crates/test-plugin-wasip2",
"crates/runner",
"fuzz",
"release",
]
resolver = "2"

Expand Down
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ lint-wasip1-targets:
--exclude=javy-runner \
--exclude=javy-test-plugin-wasip2 \
--exclude=javy-fuzz \
--exclude=javy-release \
--target=wasm32-wasip1 --all-targets --all-features -- -D warnings

lint-wasip2-targets:
Expand All @@ -33,6 +34,7 @@ lint-wasip2-targets:
--exclude=javy-runner \
--exclude=javy-test-plugin-wasip1 \
--exclude=javy-fuzz \
--exclude=javy-release \
--target=wasm32-wasip2 --all-targets --all-features -- -D warnings

test-wasi-targets: test-wasip1-targets test-wasip2-targets
Expand All @@ -44,6 +46,7 @@ test-wasip1-targets:
--exclude=javy-plugin-processing \
--exclude=javy-runner \
--exclude=javy-fuzz \
--exclude=javy-release \
--exclude=javy-test-plugin-wasip1 \
--exclude=javy-test-plugin-wasip2 \
--exclude=javy-test-invalid-plugin \
Expand All @@ -57,6 +60,7 @@ test-wasip2-targets:
--exclude=javy-plugin-processing \
--exclude=javy-runner \
--exclude=javy-fuzz \
--exclude=javy-release \
--exclude=javy-test-plugin-wasip1 \
--exclude=javy-test-plugin-wasip2 \
--exclude=javy-test-invalid-plugin \
Expand Down
17 changes: 17 additions & 0 deletions docs/docs-contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,23 @@ version `3.0.0` has not been published yet so version `3.0.0` can contain
a mixture of additive and breaking changes from the last `2.x.x` version
published.

#### Toggling development/relese versions automatically

Before making a release, you can set the release versions
automatically by running the following command from the root of the
repository

./scripts/release.sh set-release-versions

After the release is complete, you can set the development versions
automatically by running the following command from the root of the
repository

./scripts/release.sh set-dev-versions

Note that the previous script requires having
[`jq`](https://github.com/jqlang/jq) installed.

## Web platform tests (WPT)

We run a subset of the web platform test suite during continuous integration. We
Expand Down
Loading
Loading