Skip to content

Commit 820b35c

Browse files
committed
Merge branch 'develop' into hf/bump-wasmtime-deps
Conflicts: Cargo.toml
2 parents fd0737d + ee06628 commit 820b35c

File tree

20 files changed

+1817
-1298
lines changed

20 files changed

+1817
-1298
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: 'bug: '
5+
labels: 'bug'
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Desktop (please complete the following information):**
27+
- OS: [e.g. iOS]
28+
- Browser [e.g. chrome, safari]
29+
- Kinode version [e.g. v1.0.0]
30+
- process_lib version [e.g. v1.0.0]
31+
32+
**Additional context**
33+
Add any other context about the problem here.
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: 'feature: '
5+
labels: 'enhancement'
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/workflows/publish.yml

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# TODO: use this once alloy-rpc is on crates.io
2+
3+
# on:
4+
# push:
5+
# tags:
6+
# # runs every time a new tag is made
7+
# - '*'
8+
9+
# name: Publish
10+
11+
# jobs:
12+
# crates_io_publish:
13+
# name: Publish (crates.io)
14+
15+
# runs-on: ubuntu-latest
16+
# timeout-minutes: 10
17+
# steps:
18+
# - uses: actions/checkout@v3
19+
# - uses: dtolnay/rust-toolchain@nightly
20+
21+
# - name: cargo-release Cache
22+
# id: cargo_release_cache
23+
# uses: actions/cache@v3
24+
# with:
25+
# path: ~/.cargo/bin/cargo-release
26+
# key: ${{ runner.os }}-cargo-release
27+
28+
# - run: cargo install cargo-release
29+
# if: steps.cargo_release_cache.outputs.cache-hit != 'true'
30+
31+
# - name: cargo login
32+
# run: cargo login ${{ secrets.CARGO_REGISTRY_TOKEN }}
33+
34+
# # allow-branch HEAD is because GitHub actions switches
35+
# # to the tag while building, which is a detached head
36+
37+
# # Publishing is currently messy, because:
38+
# #
39+
# # * `peace_rt_model_core` exports `NativeError` or `WebError` depending on the target.
40+
# # * `peace_rt_model_web` fails to build when publishing the workspace for a native target.
41+
# # * `peace_rt_model_web` still needs its dependencies to be published before it can be
42+
# # published.
43+
# # * `peace_rt_model_hack` needs `peace_rt_model_web` to be published before it can be
44+
# # published.
45+
# #
46+
# # We *could* pass through `--no-verify` so `cargo` doesn't build the crate before publishing,
47+
# # which is reasonable, since this job only runs after the Linux, Windows, and WASM builds
48+
# # have passed.
49+
# - name: "cargo release publish"
50+
# run: |-
51+
# cargo release \
52+
# publish \
53+
# --workspace \
54+
# --all-features \
55+
# --allow-branch HEAD \
56+
# --no-confirm \
57+
# --no-verify \
58+
# --execute
59+

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
target
22
*.swp
3+
.vscode

0 commit comments

Comments
 (0)