-
Notifications
You must be signed in to change notification settings - Fork 14
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 #259 from dashevo/release_0.7.0
chore(release): update changelog and bump version to 0.7.0
- Loading branch information
Showing
214 changed files
with
11,402 additions
and
6,060 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
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 |
---|---|---|
@@ -1,10 +1,12 @@ | ||
--- | ||
name: Test Coverage | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- master | ||
- release/** | ||
- v0.*-dev | ||
|
||
jobs: | ||
bls-signatures: | ||
|
@@ -84,7 +86,7 @@ jobs: | |
with: | ||
go-version: "^1.15.4" | ||
- uses: actions/checkout@v2 | ||
- uses: technote-space/[email protected].1 | ||
- uses: technote-space/[email protected].2 | ||
with: | ||
PATTERNS: | | ||
**/**.go | ||
|
@@ -116,7 +118,7 @@ jobs: | |
with: | ||
go-version: "^1.15.4" | ||
- uses: actions/checkout@v2 | ||
- uses: technote-space/[email protected].1 | ||
- uses: technote-space/[email protected].2 | ||
with: | ||
PATTERNS: | | ||
**/**.go | ||
|
@@ -154,7 +156,7 @@ jobs: | |
run: | | ||
echo "::set-output name=hash::$(git --git-dir=third_party/bls-signatures/src/.git rev-parse HEAD)" | ||
shell: bash | ||
- uses: technote-space/[email protected].1 | ||
- uses: technote-space/[email protected].2 | ||
with: | ||
PATTERNS: | | ||
**/**.go | ||
|
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
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 |
---|---|---|
|
@@ -45,10 +45,12 @@ jobs: | |
key: ${{ runner.os }}-bls-${{ steps.bls-revision.outputs.hash }} | ||
if: steps.bls-cache.outputs.cache-hit != 'true' | ||
|
||
e2e-test: | ||
e2e-test-dashcore: | ||
runs-on: ubuntu-latest | ||
needs: bls-signatures | ||
timeout-minutes: 15 | ||
env: | ||
FULLNODE_PUBKEY_KEEP: false | ||
steps: | ||
- uses: actions/setup-go@v2 | ||
with: | ||
|
@@ -61,7 +63,7 @@ jobs: | |
run: | | ||
echo "::set-output name=hash::$(git --git-dir=third_party/bls-signatures/src/.git rev-parse HEAD)" | ||
shell: bash | ||
- uses: technote-space/[email protected].1 | ||
- uses: technote-space/[email protected].2 | ||
with: | ||
PATTERNS: | | ||
**/**.go | ||
|
@@ -81,12 +83,60 @@ jobs: | |
run: make -j2 docker runner | ||
if: "env.GIT_DIFF != ''" | ||
|
||
- name: Run CI testnet | ||
- name: Run CI dashcore testnet | ||
working-directory: test/e2e | ||
run: ./build/runner -f networks/ci.toml | ||
run: ./build/runner -f networks/dashcore.toml | ||
if: "env.GIT_DIFF != ''" | ||
|
||
- name: Emit logs on failure | ||
- name: Emit dashcore logs on failure | ||
if: ${{ failure() }} | ||
working-directory: test/e2e | ||
run: ./build/runner -f networks/ci.toml logs | ||
run: ./build/runner -f networks/dashcore.toml logs | ||
|
||
e2e-test-rotate: | ||
runs-on: ubuntu-latest | ||
needs: bls-signatures | ||
timeout-minutes: 15 | ||
env: | ||
FULLNODE_PUBKEY_KEEP: false | ||
steps: | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: '^1.15.5' | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
- name: Get BLS library revision | ||
id: bls-revision | ||
run: | | ||
echo "::set-output name=hash::$(git --git-dir=third_party/bls-signatures/src/.git rev-parse HEAD)" | ||
shell: bash | ||
- uses: technote-space/[email protected] | ||
with: | ||
PATTERNS: | | ||
**/**.go | ||
go.mod | ||
go.sum | ||
- uses: actions/cache@v2 | ||
with: | ||
path: ~/bls-cache | ||
key: ${{ runner.os }}-bls-${{ steps.bls-revision.outputs.hash }} | ||
- name: Install BLS library | ||
run: | | ||
sudo cp -vr ~/bls-cache/include/* /usr/local/include/ | ||
sudo cp -vr ~/bls-cache/libchiabls.a /usr/local/lib/ | ||
- name: Build | ||
working-directory: test/e2e | ||
# Run two make jobs in parallel, since we can't run steps in parallel. | ||
run: make -j2 docker runner | ||
if: "env.GIT_DIFF != ''" | ||
|
||
- name: Run CI rotate testnet | ||
working-directory: test/e2e | ||
run: ./build/runner -f networks/rotate.toml | ||
if: "env.GIT_DIFF != ''" | ||
|
||
- name: Emit rotate logs on failure | ||
if: ${{ failure() }} | ||
working-directory: test/e2e | ||
run: ./build/runner -f networks/rotate.toml logs |
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 |
---|---|---|
|
@@ -7,6 +7,6 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- uses: gaurav-nelson/[email protected].8 | ||
- uses: gaurav-nelson/[email protected].13 | ||
with: | ||
folder-path: "docs" |
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 |
---|---|---|
|
@@ -58,7 +58,7 @@ jobs: | |
run: | | ||
echo "::set-output name=hash::$(git --git-dir=third_party/bls-signatures/src/.git rev-parse HEAD)" | ||
shell: bash | ||
- uses: technote-space/[email protected].1 | ||
- uses: technote-space/[email protected].2 | ||
with: | ||
PATTERNS: | | ||
**/**.go | ||
|
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 |
---|---|---|
|
@@ -63,7 +63,7 @@ jobs: | |
with: | ||
go-version: "^1.15.5" | ||
- uses: actions/checkout@v2 | ||
- uses: technote-space/[email protected].1 | ||
- uses: technote-space/[email protected].2 | ||
with: | ||
PATTERNS: | | ||
**/**.go | ||
|
@@ -95,7 +95,7 @@ jobs: | |
with: | ||
go-version: "^1.15.5" | ||
- uses: actions/checkout@v2 | ||
- uses: technote-space/[email protected].1 | ||
- uses: technote-space/[email protected].2 | ||
with: | ||
PATTERNS: | | ||
**/**.go | ||
|
@@ -135,7 +135,7 @@ jobs: | |
with: | ||
go-version: "^1.15.5" | ||
- uses: actions/checkout@v2 | ||
- uses: technote-space/[email protected].1 | ||
- uses: technote-space/[email protected].2 | ||
with: | ||
PATTERNS: | | ||
**/**.go | ||
|
@@ -166,7 +166,7 @@ jobs: | |
with: | ||
go-version: "^1.15.5" | ||
- uses: actions/checkout@v2 | ||
- uses: technote-space/[email protected].1 | ||
- uses: technote-space/[email protected].2 | ||
with: | ||
PATTERNS: | | ||
**/**.go | ||
|
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.