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

Update Rust toolchain version #15

Merged
merged 2 commits into from
May 28, 2023
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
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
sudo dpkg -i "$wasi_sdk_deb"
echo "WASI_SDK_PATH=/opt/wasi-sdk" >> $GITHUB_ENV
env:
WASI_SDK_VERSION_MAJOR: 14
WASI_SDK_VERSION_MAJOR: 16
WASI_SDK_VERSION_MINOR: 0
- run: CARGO_TARGET_WASM32_WASI_RUNNER=wasmtime cargo test --target wasm32-wasi
- run: cargo build --target wasm32-unknown-unknown
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
sudo dpkg -i "$wasi_sdk_deb"
echo "WASI_SDK_PATH=/opt/wasi-sdk" >> $GITHUB_ENV
env:
WASI_SDK_VERSION_MAJOR: 14
WASI_SDK_VERSION_MAJOR: 16
WASI_SDK_VERSION_MINOR: 0
- uses: actions-rs/[email protected]
with:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ $ brew install kateinoigakukun/wasi-vfs/wasi-vfs

## Building

To build the project, you need to install the [`wasi-sdk`](https://github.com/WebAssembly/wasi-sdk) version 14.0 or later.
To build the project, you need to install the [`wasi-sdk`](https://github.com/WebAssembly/wasi-sdk) version 16.0 or later.

```console
$ git clone https://github.com/kateinoigakukun/wasi-vfs.git --recurse-submodules
$ cd wasi-vfs
$ export WASI_VERSION=14
$ export WASI_VERSION=16
$ export WASI_VERSION_FULL=${WASI_VERSION}.0

# For x86_64 Linux host machine
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.64.0"
channel = "1.69.0"
targets = [ "wasm32-unknown-unknown", "wasm32-wasi" ]