-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #181 from AvianNetwork/4.1
Merge 4.1 into master
- Loading branch information
Showing
250 changed files
with
5,731 additions
and
4,118 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,40 @@ | ||
--- | ||
name: Bug Report | ||
about: Create a report to help us improve | ||
title: '[bug] ' | ||
--- | ||
|
||
<!-- Please make sure you are posting an technical issue related to Avian. --> | ||
|
||
<!-- For general questions about Avian or wallet recovery please use one of the various communities: | ||
* [Reedit](https://www.reddit.com/r/aviannetwork/) | ||
* [Discord](https://discord.com/invite/avian) --> | ||
|
||
<!-- ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED! --> | ||
|
||
# Bug Report | ||
|
||
**Current behavior:** | ||
<!-- Describe how the bug manifests. --> | ||
|
||
**Expected behavior** | ||
<!-- Describe what the behavior would be without the bug. --> | ||
|
||
**Steps to reproduce:** | ||
<!-- Please explain the steps required to duplicate the issue, especially if you are able to provide a sample application or sample code --> | ||
|
||
**Screenshots** | ||
<!-- If the issue is related to the GUI, screenshots can be added to this issue via drag & drop. --> | ||
|
||
**Avian Core version** | ||
<!-- List the version number/commit ID, and if it is an official binary, self compiled or a distribution package such as PPA. --> | ||
|
||
**Machine specs** | ||
- OS: | ||
- CPU: | ||
- RAM: | ||
- Disk size: | ||
- Disk Type (HD/SDD): | ||
|
||
**Extra information** | ||
<!-- This is normally the contents of a `debug.log` or `config.log` file. Raw text or a link to a pastebin type site are preferred. --> |
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,30 @@ | ||
--- | ||
name: Feature Request | ||
about: Suggest an idea for this project | ||
title: '[feat] ' | ||
--- | ||
|
||
<!-- Please make sure you are posting an technical issue related to Avian. --> | ||
|
||
<!-- For general questions about Avian or wallet recovery please use one of the various communities: | ||
* [Reedit](https://www.reddit.com/r/aviannetwork/) | ||
* [Discord](https://discord.com/invite/avian) --> | ||
|
||
<!-- ISSUES MISSING IMPORTANT INFORMATION MAY BE CLOSED! --> | ||
|
||
# Feature Request | ||
|
||
**Describe the Feature Request** | ||
<!-- A clear and concise description of what the feature request is. Please include if your feature request is related to a problem. --> | ||
|
||
**Describe Preferred Solution** | ||
<!-- A clear and concise description of what you want to happen. --> | ||
|
||
**Describe Alternatives** | ||
<!-- A clear and concise description of any alternative solutions or features you've considered. --> | ||
|
||
**Related Code** | ||
<!-- If you are able to illustrate the feature request with an example, please provide a samples via an online code collaborator such as [StackBlitz](https://stackblitz.com), or code snippet on [GitHub](https://github.com). --> | ||
|
||
**Additional Context** | ||
<!-- List any other information that is relevant to your issue. Stack traces, related issues, suggestions on how to add, use case, Stack Overflow links, forum links, screenshots, OS if applicable, etc. --> |
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
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,69 @@ | ||
# CodeQL GH Actions file for Avian Core | ||
name: CodeQL | ||
|
||
on: | ||
push: | ||
paths-ignore: | ||
- '**/*.md' | ||
- '**/*.txt' | ||
- 'contrib' | ||
- 'doc' | ||
- 'share' | ||
- 'test' | ||
pull_request: | ||
paths-ignore: | ||
- '**/*.md' | ||
- '**/*.txt' | ||
- 'contrib' | ||
- 'doc' | ||
- 'share' | ||
- 'test' | ||
|
||
jobs: | ||
analyze: | ||
name: Analyze | ||
runs-on: ubuntu-18.04 | ||
permissions: | ||
actions: read | ||
contents: read | ||
security-events: write | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
language: [ 'cpp' ] | ||
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ] | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Update system | ||
run: | | ||
sudo apt-get update --yes | ||
sudo apt-get install build-essential libtool autotools-dev automake pkg-config bsdmainutils --yes | ||
- name: Dependency cache | ||
uses: actions/cache@v2 | ||
env: | ||
cache-name: depends | ||
with: | ||
path: ./depends/built | ||
key: codeql-${{ env.cache-name }}-${{ hashFiles('depends/packages/*') }} | ||
|
||
- name: Build depends | ||
run: | | ||
pushd depends | ||
make -j4 HOST=x86_64-pc-linux-gnu | ||
popd | ||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v2 | ||
with: | ||
languages: ${{ matrix.language }} | ||
|
||
- name: Build Avian Core | ||
run: | | ||
./autogen.sh | ||
./configure --prefix=`pwd`/depends/x86_64-pc-linux-gnu | ||
make -j4 | ||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v2 |
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
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
Oops, something went wrong.