Skip to content

Commit c521ce1

Browse files
committed
disable wasm build
1 parent 3d2de37 commit c521ce1

File tree

2 files changed

+18
-12
lines changed

2 files changed

+18
-12
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -148,21 +148,21 @@ jobs:
148148
RUST_LOG: ${{ runner.debug && 'TRACE' || 'DEBUG' }}
149149

150150

151-
wasm_build:
152-
name: Build wasm32
153-
runs-on: ubuntu-latest
154-
steps:
155-
- name: Checkout sources
156-
uses: actions/checkout@v4
151+
# wasm_build:
152+
# name: Build wasm32
153+
# runs-on: ubuntu-latest
154+
# steps:
155+
# - name: Checkout sources
156+
# uses: actions/checkout@v4
157157

158-
- name: Install stable toolchain
159-
uses: dtolnay/rust-toolchain@stable
158+
# - name: Install stable toolchain
159+
# uses: dtolnay/rust-toolchain@stable
160160

161-
- name: Add wasm target
162-
run: rustup target add wasm32-unknown-unknown
161+
# - name: Add wasm target
162+
# run: rustup target add wasm32-unknown-unknown
163163

164-
- name: wasm32 build
165-
run: cargo build --all-features --target wasm32-unknown-unknown
164+
# - name: wasm32 build
165+
# run: cargo build --all-features --target wasm32-unknown-unknown
166166

167167
check_semver:
168168
runs-on: ubuntu-latest

Cargo.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,9 @@ name = "fetch-fsm"
8484
[[example]]
8585
name = "fetch-stream"
8686

87+
[workspace.lints.rust]
88+
missing_debug_implementations = "warn"
89+
8790
# We use this --cfg for documenting the cargo features on which an API
8891
# is available. To preview this locally use: RUSTFLAGS="--cfg
8992
# iroh_docsrs cargo +nightly doc --all-features". We use our own
@@ -93,3 +96,6 @@ name = "fetch-stream"
9396
# do. To enable for a crate set `#![cfg_attr(iroh_docsrs,
9497
# feature(doc_cfg))]` in the crate.
9598
unexpected_cfgs = { level = "warn", check-cfg = ["cfg(iroh_docsrs)"] }
99+
100+
[workspace.lints.clippy]
101+
unused-async = "warn"

0 commit comments

Comments
 (0)