-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
1,647 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: "[TITLE]" | ||
labels: 'bug-report' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Desktop (please complete the following information):** | ||
- OS & Version: [e.g. iOS 10.2.1] | ||
- Browser & Version [e.g. chrome v71.0.12345] | ||
|
||
**Smartphone (please complete the following information):** | ||
- Device: [e.g. iPhone6] | ||
- OS: [e.g. iOS8.1] | ||
- Browser & Version [e.g. stock browser v0.1.2] | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
Description | ||
--- | ||
|
||
Motivation and Context | ||
--- | ||
|
||
How Has This Been Tested? | ||
--- | ||
|
||
What process can a PR reviewer use to test or verify this change? | ||
--- | ||
|
||
<!-- Checklist --> | ||
<!-- 1. Is the title of your PR in the form that would make nice release notes? The title, excluding the conventional commit | ||
tag, will be included exactly as is in the CHANGELOG, so please think about it carefully. --> | ||
|
||
|
||
Breaking Changes | ||
--- | ||
|
||
- [x] None | ||
- [ ] Requires data directory on base node to be deleted | ||
- [ ] Requires hard fork | ||
- [ ] Other - Please specify | ||
|
||
<!-- Does this include a breaking change? If so, include this line as a footer --> | ||
<!-- BREAKING CHANGE: Description what the user should do, e.g. delete a database, resync the chain --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
version: 2 | ||
updates: | ||
# Maintain dependencies for GitHub Actions | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
name: Security audit - daily | ||
|
||
'on': | ||
push: | ||
paths: | ||
# Run if workflow changes | ||
- '.github/workflows/audit.yml' | ||
# Run on changed dependencies | ||
- '**/Cargo.toml' | ||
- '**/Cargo.lock' | ||
# Run if the configuration file changes | ||
- '**/audit.toml' | ||
# Rerun periodicly to pick up new advisories | ||
schedule: | ||
- cron: '43 05 * * *' | ||
# Run manually | ||
workflow_dispatch: | ||
|
||
jobs: | ||
security_audit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: rustsec/[email protected] | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
[ | ||
{ | ||
"name": "linux-x86_64", | ||
"runs-on": "ubuntu-20.04", | ||
"rust": "nightly-2024-03-01", | ||
"target": "x86_64-unknown-linux-gnu", | ||
"cross": false, | ||
"build_metric": true | ||
}, | ||
{ | ||
"name": "linux-arm64", | ||
"runs-on": "ubuntu-latest", | ||
"rust": "stable", | ||
"target": "aarch64-unknown-linux-gnu", | ||
"cross": true, | ||
"flags": "--features libtor --workspace --exclude minotari_mining_helper_ffi --exclude tari_integration_tests", | ||
"build_metric": true | ||
}, | ||
{ | ||
"name": "linux-riscv64", | ||
"runs-on": "ubuntu-latest", | ||
"rust": "stable", | ||
"target": "riscv64gc-unknown-linux-gnu", | ||
"cross": true, | ||
"flags": "--workspace --exclude minotari_mining_helper_ffi --exclude tari_integration_tests", | ||
"build_enabled": true, | ||
"best_effort": true | ||
}, | ||
{ | ||
"name": "macos-x86_64", | ||
"runs-on": "macos-12", | ||
"rust": "stable", | ||
"target": "x86_64-apple-darwin", | ||
"cross": false | ||
}, | ||
{ | ||
"name": "macos-arm64", | ||
"runs-on": "macos-14", | ||
"rust": "stable", | ||
"target": "aarch64-apple-darwin", | ||
"cross": false | ||
}, | ||
{ | ||
"name": "windows-x64", | ||
"runs-on": "windows-2019", | ||
"rust": "stable", | ||
"target": "x86_64-pc-windows-msvc", | ||
"cross": false, | ||
"features": "safe", | ||
"flags": "--workspace --exclude tari_libtor" | ||
}, | ||
{ | ||
"name": "windows-arm64", | ||
"runs-on": "windows-latest", | ||
"rust": "stable", | ||
"target": "aarch64-pc-windows-msvc", | ||
"cross": false, | ||
"features": "safe", | ||
"target_bins": "minotari_node, minotari_console_wallet, minotari_merge_mining_proxy, minotari_miner", | ||
"flags": "--workspace --exclude tari_libtor", | ||
"build_enabled": false | ||
} | ||
] |
Oops, something went wrong.