0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-15 01:57:09 -05:00
This commit is contained in:
David Sherret 2025-01-25 16:42:16 -05:00
parent 39ac189b57
commit 377ffff421
4 changed files with 3 additions and 4 deletions

View file

@ -1098,7 +1098,7 @@ const ci = {
]),
},
wasm: {
name: "build wasm32-unknown-unknown",
name: "build wasm32",
needs: ["pre_build"],
if: "${{ needs.pre_build.outputs.skip_build != 'true' }}",
"runs-on": ubuntuX86Runner,
@ -1112,6 +1112,7 @@ const ci = {
},
{
name: "Cargo build",
// we want this crate to be wasm compatible
run: "cargo build --target wasm32-unknown-unknown -p deno_resolver",
},
]),

View file

@ -689,7 +689,7 @@ jobs:
!./target/*/*.tar.gz
key: '37-cargo-target-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.profile }}-${{ matrix.job }}-${{ github.sha }}'
wasm:
name: build wasm32-unknown-unknown
name: build wasm32
needs:
- pre_build
if: '${{ needs.pre_build.outputs.skip_build != ''true'' }}'

1
Cargo.lock generated
View file

@ -5265,7 +5265,6 @@ dependencies = [
"serde_json",
"sys_traits",
"thiserror 2.0.3",
"tokio",
"url",
]

View file

@ -32,5 +32,4 @@ serde.workspace = true
serde_json.workspace = true
sys_traits.workspace = true
thiserror.workspace = true
tokio.workspace = true
url.workspace = true