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

Migrate to wasip2 #541

Open
wants to merge 17 commits into
base: main
Choose a base branch
from
Open
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
12 changes: 6 additions & 6 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,11 +124,11 @@ jobs:
just build-wasm-components
just build-wasm-components-release

for i in target/wasm32-wasip1/debug/*_provider.wasm; do cp "$i" "${i%.*}-debug.wasm"; done
cp target/wasm32-wasip1/debug/pulumi_wasm.wasm target/wasm32-wasip1/debug/pulumi_wasm-debug.wasm
for i in target/wasm32-wasip2/debug/*_provider.wasm; do cp "$i" "${i%.*}-debug.wasm"; done
cp target/wasm32-wasip2/debug/pulumi_wasm.wasm target/wasm32-wasip2/debug/pulumi_wasm-debug.wasm

for i in target/wasm32-wasip1/release/*_provider.wasm; do cp "$i" "${i%.*}-release.wasm"; done
cp target/wasm32-wasip1/release/pulumi_wasm.wasm target/wasm32-wasip1/release/pulumi_wasm-release.wasm
for i in target/wasm32-wasip2/release/*_provider.wasm; do cp "$i" "${i%.*}-release.wasm"; done
cp target/wasm32-wasip2/release/pulumi_wasm.wasm target/wasm32-wasip2/release/pulumi_wasm-release.wasm
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -147,8 +147,8 @@ jobs:
prerelease: true
body: ""
files: |
target/wasm32-wasip1/release/*-release.wasm
target/wasm32-wasip1/debug/*-debug.wasm
target/wasm32-wasip2/release/*-release.wasm
target/wasm32-wasip2/debug/*-debug.wasm

deploy_language_plugin:
runs-on: ubuntu-24.04
Expand Down
95 changes: 48 additions & 47 deletions Cargo.lock

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

Loading
Loading