Skip to content

Commit

Permalink
CI: WasmV1 also needs js
Browse files Browse the repository at this point in the history
  • Loading branch information
dhardy committed Jan 3, 2025
1 parent 03b00f1 commit 375ba77
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,12 +137,12 @@ jobs:
fail-fast: false
matrix:
target: [
{ description: Web, target: wasm32-unknown-unknown, feature: "--features js" },
{ description: WasmV1, target: wasm32v1-none, feature: "" },
{ description: Web, target: wasm32-unknown-unknown },
{ description: WasmV1, target: wasm32v1-none },
]
feature: [
{ description: no_std, feature: "", build-std: "core,alloc", std: false },
{ feature: --features std, build-std: "panic_abort,std", std: true },
{ description: no_std, feature: "--features js", build-std: "core,alloc", std: false },
{ feature: --features js,std, build-std: "panic_abort,std", std: true },
]
atomic: [
{ flags: "" },
Expand All @@ -160,7 +160,7 @@ jobs:
components: rust-src
- uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build --target ${{ matrix.target.target }} ${{ matrix.target.feature }} ${{ matrix.feature.feature }} -Zbuild-std=${{ matrix.feature.build-std }}
run: cargo build --target ${{ matrix.target.target }} ${{ matrix.feature.feature }} -Zbuild-std=${{ matrix.feature.build-std }}

rdrand-uefi:
name: RDRAND UEFI
Expand Down

0 comments on commit 375ba77

Please sign in to comment.