File tree 3 files changed +4
-59
lines changed
3 files changed +4
-59
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 41
41
image : amd64/rust
42
42
steps :
43
43
- uses : actions/checkout@v4
44
- - name : Setup Rust toolchain
45
- uses : ./.github/actions/setup-builder
46
44
- name : Setup Clippy
47
45
run : rustup component add clippy
48
46
# Run different tests for the library on its own as well as
@@ -189,14 +187,14 @@ jobs:
189
187
- uses : actions/checkout@v4
190
188
with :
191
189
submodules : true
192
- - name : Setup Rust toolchain
193
- uses : ./.github/actions/setup-builder
194
- with :
195
- target : wasm32-unknown-unknown,wasm32-wasip1
196
190
- name : Install clang (needed for ring)
197
191
run : apt-get update && apt-get install -y clang
192
+ - name : Install wasm32-unknown-unknown
193
+ run : rustup target add wasm32-unknown-unknown
198
194
- name : Build wasm32-unknown-unknown
199
195
run : cargo build --target wasm32-unknown-unknown
196
+ - name : Install wasm32-wasip1
197
+ run : rustup target add wasm32-wasip1
200
198
- name : Build wasm32-wasip1
201
199
run : cargo build --all-features --target wasm32-wasip1
202
200
Original file line number Diff line number Diff line change 39
39
image : amd64/rust
40
40
steps :
41
41
- uses : actions/checkout@v4
42
- - name : Setup Rust toolchain
43
- uses : ./.github/actions/setup-builder
44
42
- name : Setup rustfmt
45
43
run : rustup component add rustfmt
46
44
- name : Format object_store
You can’t perform that action at this time.
0 commit comments