-
Notifications
You must be signed in to change notification settings - Fork 649
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 #2544 from bitshares/release
Merge release branch into master branch for 6.0.0 release
- Loading branch information
Showing
145 changed files
with
21,729 additions
and
2,886 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,8 @@ | ||
version: 2 | ||
updates: | ||
# Maintain dependencies for GitHub Actions | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
target-branch: "develop" |
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ jobs: | |
name: Build and test in macOS | ||
strategy: | ||
matrix: | ||
os: [macos-10.15, macos-11.0] | ||
os: [macos-10.15, macos-11] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Install dependencies | ||
|
@@ -28,7 +28,7 @@ jobs: | |
-D CMAKE_C_COMPILER_LAUNCHER=ccache \ | ||
-D CMAKE_CXX_COMPILER_LAUNCHER=ccache \ | ||
-D BOOST_ROOT=/usr/local/opt/[email protected] \ | ||
-D OPENSSL_ROOT_DIR=/usr/local/opt/openssl \ | ||
-D OPENSSL_ROOT_DIR=/usr/local/opt/openssl@1.1 \ | ||
.. | ||
- name: Load Cache | ||
uses: actions/cache@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
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,46 @@ | ||
name: Build and push to DockerHub | ||
on: [ push, pull_request ] | ||
jobs: | ||
docker: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Inject slug/short environment variables | ||
uses: rlespinasse/[email protected] | ||
- name: Decide whether to push to DockerHub, and set tag | ||
if: | | ||
github.event_name == 'push' && | ||
( startsWith( github.ref, 'refs/tags/' ) || | ||
contains( fromJSON('["master","develop","testnet","hardfork"]'), env.GITHUB_REF_NAME ) ) | ||
run: | | ||
if [[ "${GITHUB_REF_NAME}" == "master" ]] ; then | ||
DOCKER_PUSH_TAG=latest | ||
else | ||
DOCKER_PUSH_TAG=${GITHUB_REF_NAME} | ||
fi | ||
echo "DOCKER_PUSH_TAG=${DOCKER_PUSH_TAG}" | ||
echo "DOCKER_PUSH_TAG=${DOCKER_PUSH_TAG}" >> $GITHUB_ENV | ||
- name: Test tag | ||
if: env.DOCKER_PUSH_TAG != '' | ||
run: echo "${DOCKER_PUSH_TAG}" | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
- name: Build only | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
load: true | ||
- name: Login to DockerHub | ||
if: env.DOCKER_PUSH_TAG != '' | ||
uses: docker/login-action@v1 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
- name: Push to DockerHub | ||
if: env.DOCKER_PUSH_TAG != '' | ||
uses: docker/build-push-action@v2 | ||
with: | ||
context: . | ||
push: true | ||
tags: bitshares/bitshares-core:${{ env.DOCKER_PUSH_TAG }} |
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 |
---|---|---|
|
@@ -44,6 +44,7 @@ Anzhy Cherrnyavski <[email protected]> | |
Tengfei Niu <[email protected]> | ||
Tiago Peralta <[email protected]> | ||
ioBanker <[email protected]> | ||
xiao93 <[email protected]> | ||
Karl Semich <[email protected]> | ||
SahkanDesertHawk <[email protected]> | ||
Scott Howard <[email protected]> | ||
|
@@ -55,7 +56,6 @@ d.yakovitsky <[email protected]> | |
ddylko <ddylko@ddylkoPC> | ||
iHashFury <[email protected]> | ||
necklace <[email protected]> | ||
xiao93 <[email protected]> | ||
xuquan316 <[email protected]> | ||
Bartek Wrona <[email protected]> | ||
BhuzOr <[email protected]> | ||
|
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
Submodule docs
updated
from aa7661 to 961733
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.