File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -92,19 +92,19 @@ jobs:
92
92
93
93
- name : Set up Environment
94
94
shell : bash
95
- run : rustup target add wasm32-wasi
95
+ run : rustup target add wasm32-wasip1
96
96
97
97
- name : Build RustPython
98
- run : cargo build --target wasm32-wasi --no-default-features --features freeze-stdlib,stdlib --release
98
+ run : cargo build --target wasm32-wasip1 --no-default-features --features freeze-stdlib,stdlib --release
99
99
100
100
- name : Rename Binary
101
- run : cp target/wasm32-wasi /release/rustpython.wasm target/rustpython-release-wasm32-wasi .wasm
101
+ run : cp target/wasm32-wasip1 /release/rustpython.wasm target/rustpython-release-wasm32-wasip1 .wasm
102
102
103
103
- name : Upload Binary Artifacts
104
104
uses : actions/upload-artifact@v4
105
105
with :
106
- name : rustpython-release-wasm32-wasi
107
- path : target/rustpython-release-wasm32-wasi .wasm
106
+ name : rustpython-release-wasm32-wasip1
107
+ path : target/rustpython-release-wasm32-wasip1 .wasm
108
108
109
109
release :
110
110
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -7,6 +7,6 @@ FEATURES_FOR_WAPM=(stdlib zlib)
7
7
8
8
export BUILDTIME_RUSTPYTHONPATH=" /lib/rustpython"
9
9
10
- cargo build --release --target wasm32-wasi --no-default-features --features=" ${FEATURES_FOR_WAPM[*]} "
10
+ cargo build --release --target wasm32-wasip1 --no-default-features --features=" ${FEATURES_FOR_WAPM[*]} "
11
11
12
12
wapm publish
You can’t perform that action at this time.
0 commit comments