Skip to content

Commit

Permalink
Merge pull request #15 from wacker-dev/rename-wasm32-wasi
Browse files Browse the repository at this point in the history
Rename wasm32-wasi to wasm32-wasip1
  • Loading branch information
iawia002 authored Jul 3, 2024
2 parents da97e46 + 6fee9d7 commit b966465
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@1.78.0
uses: dtolnay/rust-toolchain@1.79.0
with:
targets: wasm32-wasi
targets: wasm32-wasip1
components: clippy, rustfmt
- name: cargo fmt
run: cargo fmt --all -- --check
Expand Down
4 changes: 2 additions & 2 deletions test-programs/artifacts/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ fn main() -> Result<()> {
let status = Command::new("cargo")
.arg("build")
.arg("--package=test-programs")
.arg("--target=wasm32-wasi")
.arg("--target=wasm32-wasip1")
.env("CARGO_TARGET_DIR", &out_dir)
.env("CARGO_PROFILE_DEV_DEBUG", "1")
.status()?;
Expand All @@ -37,7 +37,7 @@ fn main() -> Result<()> {
for target in targets {
let camel = target.to_shouty_snake_case();
let wasm = out_dir
.join("wasm32-wasi")
.join("wasm32-wasip1")
.join("debug")
.join(format!("{target}.wasm"));

Expand Down

0 comments on commit b966465

Please sign in to comment.