Skip to content
This repository has been archived by the owner on Aug 31, 2023. It is now read-only.

Weekly upstream merge #53

Merged
merged 24 commits into from
Aug 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
5200159
Fix posix-signals-on-macos on aarch64-apple-darwin (#6793)
alexcrichton Aug 2, 2023
615d697
Update preview1 to trap on misaligned pointers (#6776)
alexcrichton Aug 2, 2023
afeee15
Fix incorrect sample code in documentation (#6796) (#6797)
anoopelias Aug 3, 2023
fc03e74
Update the dev-dependency for wit-bindgen to 0.9.0 (#6800)
elliottt Aug 3, 2023
217de07
Resolve trappable error types with fully qualified package paths (#6795)
elliottt Aug 3, 2023
de4ede0
Add a bindgen test that exercises using error types from a different …
elliottt Aug 4, 2023
bb3734b
Change preview2 builder methods to use `&mut self` (#6770)
alexcrichton Aug 5, 2023
4c4663e
Bump Wasmtime to 13.0.0 (#6809)
wasmtime-publish Aug 7, 2023
c4eafed
Fix error result of clock_time_get (#6812)
vigoo Aug 7, 2023
4f1b38f
Cranelift: avoid quadratic behavior in label-fixup processing (#6804)
cfallin Aug 7, 2023
3878a00
Fix typo (#6819)
abrown Aug 7, 2023
2897e40
Remove the implementation of wasi-crypto (#6816)
alexcrichton Aug 8, 2023
2764edc
Add release notes for 12.0.0 (#6817)
alexcrichton Aug 8, 2023
bf51c6a
Fix typo (#6822)
abrown Aug 8, 2023
dd87d29
Sync wasi-filesystem with wit definitions in standards repo (#6791)
Aug 8, 2023
959c648
Configure Mach ports vs signals via `Config` (#6807)
alexcrichton Aug 9, 2023
b29476f
Remove basic-block padding from Wasmtime fuzzing (#6814)
alexcrichton Aug 9, 2023
26b9ac7
aarch64: Fix `return_call`'s interaction with pointer authentication …
alexcrichton Aug 9, 2023
f329930
aarch64: Move AMode computation into ISLE (#6805)
alexcrichton Aug 9, 2023
e6cc402
riscv64: Add IFMA instruction support (#6815)
afonso360 Aug 9, 2023
c7fc5d1
Fix testing cli-flags crate with component-model feature (#6831)
alexcrichton Aug 10, 2023
137c6f6
Add an API to detect precompiled modules/components (#6832)
alexcrichton Aug 10, 2023
94e0eef
Merge remote-tracking branch 'upstream/main' into upstream-merge
frank-emrich Aug 11, 2023
9fc0e7f
use older rustls
frank-emrich Aug 11, 2023
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
23 changes: 0 additions & 23 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -498,28 +498,6 @@ jobs:
env:
GH_TOKEN: ${{ github.token }}

# Build and test the wasi-crypto module.
test_wasi_crypto:
needs: determine
if: needs.determine.outputs.run-full
name: Test wasi-crypto module
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- run: rustup update stable && rustup default stable
- run: rustup target add wasm32-wasi
- run: ./ci/run-wasi-crypto-example.sh
env:
RUST_BACKTRACE: 1

# common logic to cancel the entire run if this job fails
- run: gh run cancel ${{ github.run_id }}
if: failure() && github.event_name != 'pull_request'
env:
GH_TOKEN: ${{ github.token }}

build-preview1-component-adapter:
name: Build wasi-preview1-component-adapter
needs: determine
Expand Down Expand Up @@ -768,7 +746,6 @@ jobs:
- checks_winarm64
- fuzz_targets
- test_wasi_nn
- test_wasi_crypto
- bench
- meta_deterministic_check
- verify-publish
Expand Down
3 changes: 0 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
[submodule "crates/wasi-nn/spec"]
path = crates/wasi-nn/spec
url = https://github.com/WebAssembly/wasi-nn
[submodule "crates/wasi-crypto/spec"]
path = crates/wasi-crypto/spec
url = https://github.com/WebAssembly/wasi-crypto.git
[submodule "tests/wasi_testsuite/wasi-threads"]
path = tests/wasi_testsuite/wasi-threads
url = https://github.com/WebAssembly/wasi-threads
Expand Down
Loading