Skip to content

Commit

Permalink
First iteration of wasmer-reborn
Browse files Browse the repository at this point in the history
  • Loading branch information
syrusakbary committed Apr 22, 2020
1 parent 020b878 commit a402691
Show file tree
Hide file tree
Showing 199 changed files with 43,615 additions and 156 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CHANGELOG.md merge=union
25 changes: 25 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#
src/ @syrusakbary @MarkMcCaskey

# Backends
lib/compiler-singlepass @losfair @nlewycky
lib/compiler-cranelift @syrusakbary @nlewycky
lib/compiler-llvm @nlewycky @losfair

# Runtime
lib/runtime @syrusakbary @Hywan
lib/c-api @Hywan

# Frontend integrations

## Emscripten
lib/emscripten @MarkMcCaskey @syrusakbary

## WASI
lib/wasi @MarkMcCaskey

# Examples
examples @syrusakbary

# Examples
tests @syrusakbary @MarkMcCaskey
50 changes: 50 additions & 0 deletions .github/ISSUE_TEMPLATE/---bug-report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
---
name: "\U0001F41E Bug report"
about: Create a report to help us improve
title: ''
labels: "\U0001F41E bug"
assignees: ''

---

<!-- Thanks for the bug report! -->

### Describe the bug

<!--
A clear and concise description of what the bug is.
Copy and paste the result of executing the following in your shell, so we can know the version of wasmer, Rust (if available) and architecture of your environment.
-->

```sh
echo "`wasmer -V` | `rustc -V` | `uname -m`"
```


### Steps to reproduce
<!--
Include steps that will help us recreate the issue.
For example,
1. Go to '…'
2. Compile with '…'
3. Run '…'
4. See error
If applicable, add a link to a test case (as a zip file or link to a repository we can clone).
-->

### Expected behavior
<!-- A clear and concise description of what you expected to happen. -->

### Actual behavior

<!--
A clear and concise description of what actually happened.
If applicable, add screenshots to help explain your problem.
-->

### Additional context
<!-- Add any other context about the problem here. -->
26 changes: 26 additions & 0 deletions .github/ISSUE_TEMPLATE/---feature-request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
name: "\U0001F389 Feature request"
about: Suggest an idea for this project
title: ''
labels: "\U0001F389 enhancement"
assignees: ''

---

Thanks for proposing a new feature!

### Motivation

A clear and concise description of what the motivation for the new feature is, and what problem it is solving.

### Proposed solution

A clear and concise description of the feature you would like to add, and how it solves the motivating problem.

### Alternatives

A clear and concise description of any alternative solutions or features you've considered, and why you're proposed solution is better.

### Additional context

Add any other context or screenshots about the feature request here.
16 changes: 16 additions & 0 deletions .github/ISSUE_TEMPLATE/--question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
name: "❓ Question"
about: Ask a question about this project
title: ''
labels: "❓ question"
assignees: ''

---

### Summary

A clear and concise summary of your question.

### Additional details

Provide any additional details here.
15 changes: 15 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!--
Prior to submitting a PR, review the CONTRIBUTING.md document for recommendations on how to test:
https://github.com/wasmerio/wasmer/blob/master/CONTRIBUTING.md#pull-requests
-->

# Description
<!--
Provide details regarding the change including motivation,
links to related issues, and the context of the PR.
-->

# Review

- [ ] Add a short description of the the change to the CHANGELOG.md file
14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
**/target
**/*.rs.bk
/artifacts
.DS_Store
.idea
**/.vscode
install/
capi/
api-docs/
api-docs-repo/

# Generated by tests on Android
/avd
/core
Loading

0 comments on commit a402691

Please sign in to comment.