-
Notifications
You must be signed in to change notification settings - Fork 650
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 #2519 from bitshares/testnet_release
Merge release branch into testnet branch for 6.0 TESTNET release
- Loading branch information
Showing
141 changed files
with
21,711 additions
and
2,876 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
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.