Skip to content

Commit

Permalink
Showing 6 changed files with 19 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/actions/bls/action.yml
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ inputs:
default: amd64
required: false
outputs:
bls_cache_key:
bls_cache_key:
description: Key used by BLS cache
value: ${{ runner.os }}-${{ inputs.arch }}-bls-${{ steps.bls-revision.outputs.hash }}
runs:
17 changes: 9 additions & 8 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
version: 2
updates:
- package-ecosystem: github-actions
@@ -6,14 +7,14 @@ updates:
interval: daily
time: "11:00"
open-pull-requests-limit: 10
# - package-ecosystem: npm
# directory: "/docs"
# schedule:
# interval: daily
# time: "11:00"
# open-pull-requests-limit: 10
# reviewers:
# - fadeev
# - package-ecosystem: npm
# directory: "/docs"
# schedule:
# interval: daily
# time: "11:00"
# open-pull-requests-limit: 10
# reviewers:
# - fadeev
- package-ecosystem: gomod
directory: "/"
schedule:
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ jobs:
fail-fast: false
matrix:
goarch:
- "amd64"
- "amd64"
# - "arm"
goos: ["linux"]
timeout-minutes: 5
@@ -43,7 +43,7 @@ jobs:
arch: ${{ matrix.goarch }}
- name: install-gcc
run: sudo apt-get update -qq && sudo apt-get install -qq --yes gcc-10-arm-linux-gnueabi g++-10-arm-linux-gnueabi
if: "matrix.goarch == 'arm'"
if: "matrix.goarch == 'arm'"
- name: install
run: |
GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} make build-binary
3 changes: 2 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
---
name: Docker
# Build & Push rebuilds the Tenderdash docker image every time a release is published
# and pushes the image to https://hub.docker.com/r/dashpay/tenderdash/tags
on:
workflow_dispatch:
release:
types:
- published
- published

jobs:
build:
5 changes: 3 additions & 2 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: e2e
# Runs the CI end-to-end test network on all pushes to master or release branches
# and every pull request, but only if any Go files have been changed.
@@ -15,14 +16,14 @@ jobs:
strategy:
fail-fast: true
matrix:
testnet: [ "dashcore", "rotate" ]
testnet: ["dashcore", "rotate"]
timeout-minutes: 25
env:
FULLNODE_PUBKEY_KEEP: false
steps:
- uses: actions/setup-go@v2
with:
go-version: '1.17'
go-version: "1.17"
- uses: actions/[email protected]
with:
submodules: true
3 changes: 2 additions & 1 deletion .github/workflows/proto.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
---
name: Protobuf
# Protobuf runs buf (https://buf.build/) lint and check-breakage
# This workflow is only run when a .proto file has been modified
on:
workflow_dispatch: # allow running workflow manually
workflow_dispatch: # allow running workflow manually
pull_request:
paths:
- "**.proto"

0 comments on commit d24d926

Please sign in to comment.