Dataset Viewer
Auto-converted to Parquet Duplicate
repo_full_name
large_stringclasses
600 values
description
large_stringclasses
583 values
html_url
large_stringclasses
600 values
default_branch
large_stringclasses
10 values
file_path
large_stringlengths
4
198
content
large_stringlengths
0
473k
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
README.md
# WebAssembly Micro Runtime **A [Bytecode Alliance][BA] project** [BA]: https://bytecodealliance.org/ **[Guide](https://wamr.gitbook.io/)**  **[Website](https://bytecodealliance.github.io/wamr.dev)**  **[Chat](https://bytecodealliance.zulipchat.com/#narrow/stream/290350-wamr)** [Build WAMR](./d...
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.devcontainer/devcontainer.json
{ "name": "WAMR-Dev", "build": { "dockerfile": "Dockerfile", "args": { "VARIANT": "debian-12", "WASI_SDK_VER": "25", "WABT_VER": "1.0.37" } }, "runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined" ], "customizations": { "vscode": { "s...
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.devcontainer/requirements.txt
black nose pycparser pylint requests
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.github/ISSUE_TEMPLATE/bug_report.md
--- name: Bug report about: Create a report to help us improve title: "Add a placeholder for issue title. ex: [BUG]" labels: bug assignees: "" --- **Is it a security vulnerability?** 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-securi...
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.github/ISSUE_TEMPLATE/config.yml
blank_issues_enabled: true
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.github/ISSUE_TEMPLATE/feature_request.md
--- name: Feature request about: Suggest an idea for this project title: 'Add a placeholder for issue title. ex: [RFC]' labels: help wanted assignees: '' --- **Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] ...
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.github/actions/install-linux-sgx/action.yml
# Copyright (C) 2019 Intel Corporation. All rights reserved. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception # Always follow https://download.01.org/intel-sgx/latest/linux-latest/docs/ name: "Install Intel SGX SDK" description: "Installs the Intel SGX SDK and necessary libraries for Ubuntu." author: "Intel...
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.github/actions/install-wasi-sdk-wabt/action.yml
# Copyright (C) 2019 Intel Corporation. All rights reserved. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception # Get URLs from: # - https://github.com/WebAssembly/wasi-sdk/releases # - https://github.com/WebAssembly/wabt/releases # Install WASI-SDK and WABT at /opt # /opt is the assumed location widely u...
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.github/codeql/codeql_config.yml
# Copyright (C) 2019 Intel Corporation. All rights reserved. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception paths: - .github - core/iwasm - core/shared/platform/common/ - core/shared/platform/include/ - core/shared/platform/linux/ - product-mini/platforms/common/ - product-mini/platforms/linux...
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.github/dependabot.yml
# Copyright (C) 2019 Intel Corporation. All rights reserved. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception version: 2 updates: - package-ecosystem: "github-actions" directory: "/" schedule: interval: "weekly" - package-ecosystem: "docker" directory: "/.devcontainer" schedule: interval: "w...
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.github/scripts/codeql_fail_on_error.py
#!/usr/bin/env python3 # # Copyright (C) 2019 Intel Corporation. All rights reserved. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception # import json import sys import os import requests def fetch_dismissed_alerts(repo_name, github_token): headers = { "Authorization": f"token {github_token}", ...
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.github/scripts/extract_from_release_notes.py
#!/usr/bin/env python3 # # Copyright (C) 2019 Intel Corporation. All rights reserved. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception # """ Extract the latest release notes content from RELEASE_NOTES.md """ import argparse import os import sys import traceback def latest_content(release_notes_path): ...
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.github/scripts/fetch_and_compare_version.py
#!/usr/bin/env python3 # # Copyright (C) 2019 Intel Corporation. All rights reserved. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception # import re import shlex import subprocess import sys def fetch_version_from_code(): """ search the semantic version definition in core/version.h """ major,...
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.github/scripts/reuse_latest_release_binaries.py
#!/usr/bin/env python3 # # Copyright (C) 2019 Intel Corporation. All rights reserved. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception # import argparse import json import os import shlex import subprocess import sys from urllib.error import HTTPError, URLError import urllib.request def get_last_commit(tar...
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.github/workflows/build_docker_images.yml
# Copyright (C) 2019 Intel Corporation. All rights reserved. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception name: Create and publish Docker images on: workflow_call: inputs: upload_url: description: upload binary assets to the URL of release type: string required: true ...
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.github/workflows/build_iwasm_release.yml
# Copyright (C) 2019 Intel Corporation. All rights reserved. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception name: build iwasm release on: workflow_call: inputs: arch: description: arch of the release type: string required: false default: x86_64 cwd: ...
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.github/workflows/build_llvm_libraries.yml
# Copyright (C) 2019 Intel Corporation. All rights reserved. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception name: Reusable workflow-build_llvm_libraries on: workflow_call: inputs: os: required: true type: string arch: required: true type: string conta...
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.github/workflows/build_wamr_lldb.yml
# Copyright (C) 2019 Intel Corporation. All rights reserved. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception name: build wamr lldb on: workflow_call: inputs: arch: description: arch of the release type: string required: false default: x86_64 runner: ...
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.github/workflows/build_wamr_sdk.yml
# Copyright (C) 2019 Intel Corporation. All rights reserved. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception name: build wamr-sdk on: workflow_call: inputs: arch: description: arch of the release type: string required: false default: x86_64 config_file: ...
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.github/workflows/build_wamr_vscode_ext.yml
# Copyright (C) 2019 Intel Corporation. All rights reserved. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception name: build wamr-ide vscode extension on: workflow_call: inputs: upload_url: description: upload binary assets to the URL of release type: string required: true ...
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.github/workflows/build_wamr_wasi_extensions.yml
# Copyright (C) 2019 Intel Corporation. All rights reserved. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception name: build wamr_wasi_extensions release on: workflow_call: inputs: upload_url: description: upload binary assets to the URL of release type: string required: fal...
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.github/workflows/build_wamrc.yml
# Copyright (C) 2019 Intel Corporation. All rights reserved. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception name: build wamrc on: workflow_call: inputs: arch: description: arch of the release type: string required: false default: x86_64 llvm_cache_key: ...
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.github/workflows/check_version_h.yml
# Copyright (C) 2019 Intel Corporation. All rights reserved. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception name: confirm version.h stay in sync on: workflow_call: permissions: contents: read jobs: confirm_version: runs-on: ubuntu-latest steps: - name: checkout uses: actions/...
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.github/workflows/codeql.yml
# Copyright (C) 2019 Intel Corporation. All rights reserved. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception name: "CodeQL" on: # run on every push to the feature-development branch # the main branch is covered by below cron plan push: branches: - dev/** # midnight UTC on the latest commi...
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.github/workflows/coding_guidelines.yml
# Copyright (C) 2019 Intel Corporation. All rights reserved. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception name: Coding Guidelines on: # will be triggered on PR events pull_request: # allow to be triggered manually workflow_dispatch: # Cancel any in-flight jobs for the same PR/branch so there's o...
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.github/workflows/compilation_on_android_ubuntu.yml
# Copyright (C) 2019 Intel Corporation. All rights reserved. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception name: compilation on android, ubuntu-22.04 on: # will be triggered on PR events pull_request: types: - opened - synchronize paths: - ".github/workflows/build_llvm_libra...
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.github/workflows/compilation_on_macos.yml
# Copyright (C) 2019 Intel Corporation. All rights reserved. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception name: compilation on macos on: # will be triggered on PR events pull_request: types: - opened - synchronize paths: - ".github/workflows/build_llvm_libraries.yml" ...
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.github/workflows/compilation_on_nuttx.yml
# Copyright (C) 2019 Intel Corporation. All rights reserved. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception name: compilation on nuttx on: # will be triggered on PR events pull_request: types: - opened - synchronize paths: - ".github/workflows/compilation_on_nuttx.yml" ...
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.github/workflows/compilation_on_sgx.yml
# Copyright (C) 2019 Intel Corporation. All rights reserved. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception name: compilation on SGX on: # will be triggered on PR events pull_request: types: - opened - synchronize paths: - ".github/workflows/build_llvm_libraries.yml" - ...
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.github/workflows/compilation_on_windows.yml
# Copyright (C) 2019 Intel Corporation. All rights reserved. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception name: compilation on windows-2022 on: # will be triggered on PR events pull_request: types: - opened - synchronize paths: - ".github/workflows/compilation_on_windows.ym...
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.github/workflows/compilation_on_zephyr.yml
# Copyright (C) 2019 Intel Corporation. All rights reserved. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception name: compilation on zephyr on: # will be triggered on PR events pull_request: types: - opened - synchronize paths: - ".github/workflows/compilation_on_zephyr.yml" ...
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.github/workflows/create_tag.yml
# Copyright (C) 2019 Intel Corporation. All rights reserved. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception name: create a tag on: workflow_call: outputs: minor_version: description: "the new version is a minor version or a major version" value: ${{ jobs.create_tag.outputs.minor...
bytecodealliance/wasm-micro-runtime
WebAssembly Micro Runtime (WAMR)
https://github.com/bytecodealliance/wasm-micro-runtime
main
.github/workflows/hadolint_dockerfiles.yml
# Copyright (C) 2019 Intel Corporation. All rights reserved. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception name: hadolint dockerfiles on: # will be triggered on PR events pull_request: types: - opened - synchronize paths: - "**/Dockerfile*" - ".github/workflows/hadolin...
End of preview. Expand in Data Studio
README.md exists but content is empty.
Downloads last month
34