Skip to content

Commit

Permalink
ci: remove chmod on windows iwasm
Browse files Browse the repository at this point in the history
  • Loading branch information
nilslice committed Sep 25, 2023
1 parent fc061af commit 8e45167
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/iwasm-windows-compat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,4 @@ jobs:
- name: "iwasm.com cowsay.wasm"
shell: bash
run: |
chmod u+x iwasm.com
echo "hello, github" | sh ./iwasm.com src/cowsay/main.wasm
2 changes: 1 addition & 1 deletion wasm-micro-runtime
Submodule wasm-micro-runtime updated 28 files
+7 −0 build-scripts/config_common.cmake
+92 −0 core/iwasm/common/wasm_blocking_op.c
+17 −0 core/iwasm/common/wasm_runtime_common.c
+9 −0 core/iwasm/common/wasm_runtime_common.h
+2 −0 core/iwasm/common/wasm_suspend_flags.h
+44 −0 core/iwasm/include/wasm_export.h
+117 −99 core/iwasm/libraries/libc-wasi/libc_wasi_wrapper.c
+91 −0 core/iwasm/libraries/libc-wasi/sandboxed-system-primitives/include/wasmtime_ssp.h
+201 −0 core/iwasm/libraries/libc-wasi/sandboxed-system-primitives/src/blocking_op.c
+52 −0 core/iwasm/libraries/libc-wasi/sandboxed-system-primitives/src/blocking_op.h
+258 −217 core/iwasm/libraries/libc-wasi/sandboxed-system-primitives/src/posix.c
+4 −0 core/iwasm/libraries/thread-mgr/thread_manager.c
+69 −0 core/shared/platform/common/posix/posix_blocking_op.c
+13 −5 core/shared/platform/common/posix/posix_thread.c
+6 −0 core/shared/platform/darwin/platform_internal.h
+6 −0 core/shared/platform/freebsd/platform_internal.h
+28 −0 core/shared/platform/include/platform_api_extension.h
+6 −0 core/shared/platform/linux/platform_internal.h
+6 −0 core/shared/platform/nuttx/platform_internal.h
+4 −0 doc/build_wamr.md
+29 −1 doc/export_native_api.md
+7 −0 product-mini/platforms/nuttx/wamr.mk
+4 −1 product-mini/platforms/posix/main.c
+5 −8 product-mini/platforms/rt-thread/iwasm.c
+48 −29 tests/wamr-test-suites/spec-test-script/all.py
+2 −2 tests/wamr-test-suites/test_wamr.sh
+19 −0 tests/wamr-test-suites/wasi-test-script/pipe.py
+5 −2 tests/wamr-test-suites/wasi-test-script/run_wasi_tests.sh

0 comments on commit 8e45167

Please sign in to comment.