onnxruntime/tools/ci_build
Changming Sun 0204594f90
Cleanup WASM cmake code (#15996)
### Description
Remove the "onnxruntime_BUILD_WEBASSEMBLY" cmake option. Use `if
(CMAKE_SYSTEM_NAME STREQUAL "Emscripten")` instead. It makes some code
look more nature.
For example,

```cmake
if (CMAKE_SYSTEM_NAME STREQUAL "iOS" OR CMAKE_SYSTEM_NAME STREQUAL "Android" OR onnxruntime_BUILD_WEBASSEMBLY)
```
becomes
```cmake
if (CMAKE_SYSTEM_NAME STREQUAL "iOS" OR CMAKE_SYSTEM_NAME STREQUAL "Android" OR CMAKE_SYSTEM_NAME STREQUAL "Emscripten")
```
2023-05-20 18:07:39 -07:00
..
github [QNN EP] Enable Qnn context cache to save model initialization time (#15815) 2023-05-19 10:52:17 -07:00
__init__.py
amd_hipify.py
build.py Cleanup WASM cmake code (#15996) 2023-05-20 18:07:39 -07:00
clean_docker_image_cache.py
compile_triton.py integrate triton into ort (#15862) 2023-05-17 09:35:28 +08:00
coverage.py
gen_def.py Basic CSharp packaging support for ROCm EP (#15535) 2023-05-16 07:27:38 +08:00
get_docker_image.py
logger.py
op_registration_utils.py
op_registration_validator.py Update kernel registration validation to allow kernel registrations to appear in arbitrary order. (#15705) 2023-04-27 18:49:31 -07:00
patch_manylinux.py
policheck_exclusions.xml
reduce_op_kernels.py
replace_urls_in_deps.py
requirements.txt
update_tsaoptions.py
upload_python_package_to_azure_storage.py