Skip to content

Commit 505eb2d

Browse files
authored
Merge branch 'bytecodealliance:main' into fix/zephyr_product_mini
2 parents b69ff79 + ba9f9d1 commit 505eb2d

File tree

100 files changed

+2051
-183
lines changed

Some content is hidden

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

100 files changed

+2051
-183
lines changed

.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/workflows/build_iwasm_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,15 +151,15 @@ jobs:
151151
working-directory: ${{ inputs.cwd }}
152152

153153
- name: Compress the binary on Windows
154-
if: inputs.runner == 'windows-latest'
154+
if: inputs.runner == 'windows-2022'
155155
run: |
156156
tar -czf iwasm${{ matrix.suffix }}-${{ inputs.ver_num }}-${{ inputs.runner }}.tar.gz iwasm.exe
157157
Compress-Archive -Path iwasm.exe -DestinationPath iwasm${{ matrix.suffix }}-${{ inputs.ver_num }}-${{ inputs.runner }}.zip
158158
mv iwasm${{ matrix.suffix }}-${{ inputs.ver_num }}-${{ inputs.runner }}.* ../
159159
working-directory: ${{ inputs.cwd }}/build/Release
160160

161161
- name: compress the binary on non-Windows
162-
if: inputs.runner != 'windows-latest'
162+
if: inputs.runner != 'windows-2022'
163163
run: |
164164
# Follow the symlink to the actual binary file
165165
tar --dereference -czf iwasm${{ matrix.suffix }}-${{ inputs.ver_num }}-${{ inputs.runner }}.tar.gz iwasm

.github/workflows/build_llvm_libraries.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,11 +118,11 @@ jobs:
118118
key: 0-ccache-${{ inputs.os }}-${{ steps.get_last_commit.outputs.last_commit }}
119119
restore-keys: |
120120
0-ccache-${{ inputs.os }}
121-
if: steps.retrieve_llvm_libs.outputs.cache-hit != 'true' && inputs.os == 'windows-latest'
121+
if: steps.retrieve_llvm_libs.outputs.cache-hit != 'true' && inputs.os == 'windows-2022'
122122

123123
# Install tools on Windows
124124
- run: choco install -y ccache ninja
125-
if: steps.retrieve_llvm_libs.outputs.cache-hit != 'true' && inputs.os == 'windows-latest'
125+
if: steps.retrieve_llvm_libs.outputs.cache-hit != 'true' && inputs.os == 'windows-2022'
126126

127127
- name: Build LLVM libraries
128128
if: steps.retrieve_llvm_libs.outputs.cache-hit != 'true'

.github/workflows/build_wamr_vscode_ext.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- uses: actions/checkout@v5
2828

2929
- name: Use Node.js 18.x
30-
uses: actions/setup-node@v5
30+
uses: actions/setup-node@v6
3131
with:
3232
node-version: 18.x
3333

.github/workflows/build_wamrc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,15 +87,15 @@ jobs:
8787
working-directory: wamr-compiler
8888

8989
- name: Compress the binary on Windows
90-
if: inputs.runner == 'windows-latest' && inputs.release
90+
if: inputs.runner == 'windows-2022' && inputs.release
9191
run: |
9292
tar -czf wamrc-${{ inputs.ver_num }}-${{ inputs.runner }}.tar.gz wamrc.exe
9393
Compress-Archive -Path wamrc.exe -DestinationPath wamrc-${{ inputs.ver_num }}-${{ inputs.runner }}.zip
9494
mv wamrc-${{ inputs.ver_num }}-${{ inputs.runner }}.* ../
9595
working-directory: wamr-compiler/build/Release
9696

9797
- name: compress the binary on non-Windows
98-
if: inputs.runner != 'windows-latest' && inputs.release
98+
if: inputs.runner != 'windows-2022' && inputs.release
9999
run: |
100100
# Follow the symlink to the actual binary file
101101
tar --dereference -czf wamrc-${{ inputs.ver_num }}-${{ inputs.runner }}.tar.gz wamrc

0 commit comments

Comments
 (0)