Skip to content

Commit

Permalink
Fix CI builds, add version info (#1582)
Browse files Browse the repository at this point in the history
  • Loading branch information
prasannavl authored Nov 17, 2022
1 parent a4472df commit fff6b77
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/hotfix-builds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
username: ${{ secrets.DOCKER_HUB_USER }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}
path: ./contrib/dockerfiles/dockerhub
dockerfile: ./contrib/dockerfiles/dockerhub/x86_64-pc-linux-gnu-clang.dockerfile
dockerfile: ./contrib/dockerfiles/dockerhub/x86_64-pc-linux-gnu.dockerfile
repository: defi/defichain
tags: ${{ env.BUILD_VERSION }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/prune-artifacts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ on:

jobs:
cleanup:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
timeout-minutes: 10

steps:
- name: Prune artifacts
uses: c-hive/gha-remove-artifacts@24dc23384a1fa6a058b79c73727ae0cb2200ca4c
uses: c-hive/gha-remove-artifacts@v1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
age: '4 weeks'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-builds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
username: ${{ secrets.DOCKER_HUB_USER }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}
path: ./contrib/dockerfiles/dockerhub
dockerfile: ./contrib/dockerfiles/dockerhub/x86_64-pc-linux-gnu-clang.dockerfile
dockerfile: ./contrib/dockerfiles/dockerhub/x86_64-pc-linux-gnu.dockerfile
repository: defi/defichain
tags: latest,${{ env.BUILD_VERSION }}

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ define(_CLIENT_VERSION_MAJOR, 3)
define(_CLIENT_VERSION_MINOR, 0)
define(_CLIENT_VERSION_REVISION, 0)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_RC, 3)
define(_CLIENT_VERSION_RC, 4)
define(_CLIENT_VERSION_IS_RELEASE, false)
define(_COPYRIGHT_YEAR, 2022)
define(_COPYRIGHT_HOLDERS,[The %s developers])
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* network protocol versioning
*/

static const int PROTOCOL_VERSION = 70031;
static const int PROTOCOL_VERSION = 70032;

//! initial proto version, to be increased after version/verack negotiation
static const int INIT_PROTO_VERSION = 209;
Expand Down

0 comments on commit fff6b77

Please sign in to comment.