Skip to content

Commit 97a2f11

Browse files
Merge remote-tracking branch 'upstream/main'
2 parents cc98bb0 + f6ce52f commit 97a2f11

348 files changed

Lines changed: 21525 additions & 3342 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/ISSUE_TEMPLATE/blank_issue.md

Lines changed: 0 additions & 5 deletions
This file was deleted.
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: "Add a placeholder for issue title. ex: [BUG]"
5+
labels: bug
6+
assignees: ""
7+
---
8+
9+
**Is it a security vulnerability?**
10+
If it results in a crash or hang, please refer to [a quick checklist](../../doc/security_need_to_know.md#is-this-bug-considered-a-security-vulnerability) to determine if it is a security vulnerability. If you are still unsure, please report it through [a security advisor](https://github.com/bytecodealliance/wasm-micro-runtime/security/advisories) and allow the maintainer to make a decision. Thank you.
11+
12+
**Describe the bug**
13+
A clear and concise description of what the bug is.
14+
15+
**Version**
16+
Information like tags, release version, commits.
17+
18+
**To Reproduce**
19+
Steps to reproduce the behavior:
20+
21+
1. Compile iwasm with flags like '...'
22+
2. (Optional) Compile wamrc with flags like '....'
23+
3. (Optional) Run wamrc with CLI options like '...' to generate .aot
24+
4. Run iwasm with CLI options like '...'
25+
5. See error
26+
27+
**Expected behavior**
28+
A clear and concise description of what you expected to happen.
29+
30+
**Actual Result**
31+
What you've got.
32+
33+
**Desktop (please complete the following information):**
34+
35+
- Arch [e.g. x86_64, arm64, 32bit]
36+
- Board [e.g. STM32F407]
37+
- OS [e.g. Linux, Windows, macOS, FreeRTOS]
38+
- Version [e.g. 22]
39+
40+
**Additional context**
41+
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: true
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: 'Add a placeholder for issue title. ex: [RFC]'
5+
labels: help wanted
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.github/ISSUE_TEMPLATE/improvement.md

Lines changed: 0 additions & 28 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/report_bug.md

Lines changed: 0 additions & 36 deletions
This file was deleted.

.github/codeql/codeql_config.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Copyright (C) 2019 Intel Corporation. All rights reserved.
2+
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
3+
paths:
4+
- .github
5+
- core/iwasm
6+
- core/shared/platform/common/
7+
- core/shared/platform/include/
8+
- core/shared/platform/linux/
9+
- product-mini/platforms/common/
10+
- product-mini/platforms/linux/
11+
# TODO: add other platforms back if able to do cross-compilation
12+
# - product-mini/platforms/
13+
# TODO: add samples back after buildscript modification
14+
# - need to ignore workloads and wasm-apps
15+
# - samples
16+
- wamr-compiler/
17+
paths-ignore:
18+
# always ignore build
19+
- '**/build/**'
20+
- '**/test*/**'
21+
- '**/wasm-app*/**'
22+
- core/deps/
23+
# platform specific
24+
- core/iwasm/aot/arch/aot_reloc_aarch64.c
25+
- core/iwasm/aot/arch/aot_reloc_arc.c
26+
- core/iwasm/aot/arch/aot_reloc_arm.c
27+
- core/iwasm/aot/arch/aot_reloc_dummy.c
28+
- core/iwasm/aot/arch/aot_reloc_mips.c
29+
- core/iwasm/aot/arch/aot_reloc_riscv.c
30+
- core/iwasm/aot/arch/aot_reloc_thumb.c
31+
- core/iwasm/aot/arch/aot_reloc_xtensa.c
32+
- core/iwasm/libraries/lib-rats/
33+
- core/iwasm/libraries/lib-socket/
34+
- core/iwasm/libraries/lib-wasi-threads/*-test/
35+
- core/shared/platform/common/freertos/
36+
- core/shared/platform/common/math/
37+
#TODO: add me back if lldb libraries installed
38+
- core/iwasm/compilation/debug/
39+
# spend disk space and slow
40+
- core/iwasm/libraries/wasi-nn/src/wasi_nn_tflite*
41+
#TODO: add me back if openvino installed
42+
- core/iwasm/libraries/wasi-nn/src/wasi_nn_openvino*
43+
# for wasm
44+
- core/iwasm/libraries/wasi-nn/include/wasi_nn.h
45+
# reference
46+
- core/iwasm/common/arch/invokeNative_general.c

0 commit comments

Comments
 (0)