Skip to content

Commit

Permalink
ci: fix build, update changelog
Browse files Browse the repository at this point in the history
Signed-off-by: Henry Gressmann <[email protected]>
  • Loading branch information
explodingcamera committed Sep 11, 2024
1 parent c34f696 commit eb97adc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
name: "Linux armv7"
target: armv7-unknown-linux-gnueabihf

name: Run tests on ${{ matrix.name }})
name: Run tests on ${{ matrix.name }}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Support for the custom memory page sizes proposal ([#22](https://github.com/explodingcamera/tinywasm/pull/22) by [@danielstuart14](https://github.com/danielstuart14))

### Changed

- **Breaking:**: New backwards-incompatible version of the twasm format (upgraded `rkyv` to 0.8.0)
- Increased MSRV to 1.81.0

### Fixed

- Fixed archive **no_std** support which was broken in the previous release, and added more tests to ensure it stays working

## [0.8.0] - 2024-08-29

**All Commits**: https://github.com/explodingcamera/tinywasm/compare/v0.7.0...v0.8.0
Expand Down
1 change: 1 addition & 0 deletions examples/rust/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ mkdir -p "$dest_dir"

# build no_std
cargo build --target wasm32-unknown-unknown --package rust-wasm-examples --profile=wasm --bin tinywasm_no_std --no-default-features
cp "$out_dir/tinywasm_no_std.wasm" "$dest_dir/"

for bin in "${bins[@]}"; do
RUSTFLAGS="-C target-feature=$rust_features -C panic=abort" cargo build --target wasm32-unknown-unknown --package rust-wasm-examples --profile=wasm --bin "$bin"
Expand Down

0 comments on commit eb97adc

Please sign in to comment.