Skip to content

Commit 14291fa

Browse files
authored
wasi: Update the location of the 'config.site' file in the build script (GH-133611)
Also remove Tools/wasm from mypy CI workflow
1 parent 74e2acd commit 14291fa

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.github/workflows/mypy.yml

-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ on:
1919
- "Tools/jit/**"
2020
- "Tools/peg_generator/**"
2121
- "Tools/requirements-dev.txt"
22-
- "Tools/wasm/**"
2322
workflow_dispatch:
2423

2524
permissions:
@@ -51,7 +50,6 @@ jobs:
5150
"Tools/clinic",
5251
"Tools/jit",
5352
"Tools/peg_generator",
54-
"Tools/wasm",
5553
]
5654
steps:
5755
- uses: actions/checkout@v4

Tools/wasm/wasi/__main__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def configure_wasi_python(context, working_dir):
206206
"https://github.com/WebAssembly/wasi-sdk and/or "
207207
"specify via $WASI_SDK_PATH or --wasi-sdk")
208208

209-
config_site = os.fsdecode(CHECKOUT / "Tools" / "wasm" / "config.site-wasm32-wasi")
209+
config_site = os.fsdecode(CHECKOUT / "Tools" / "wasm" / "wasi" / "config.site-wasm32-wasi")
210210

211211
wasi_build_dir = working_dir.relative_to(CHECKOUT)
212212

0 commit comments

Comments
 (0)