Skip to content

Commit

Permalink
bump version and branch rename (#385)
Browse files Browse the repository at this point in the history
  • Loading branch information
blxdyx authored May 7, 2024
1 parent 446d925 commit 1c9e207
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Check
on:
push:
branches:
- devel
- main
- devel_1.2.0
workflow_dispatch:

Expand Down
8 changes: 3 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,13 @@ name: CI
on:
push:
branches:
- devel
- alpha
- main
- devel_1.2.0
- 'release/**'
pull_request:
branches:
- devel_1.2.0
- devel
- alpha
- main
- 'release/**'
types:
- opened
Expand Down Expand Up @@ -113,7 +111,7 @@ jobs:

docker-build-check:
# don't run this on devel - the PR must have run it to be merged and it misleads that this pushes the docker image
if: (${{ github.event_name == 'push' || !github.event.pull_request.draft }}) && ${{ github.ref != 'refs/heads/devel' }}
if: (${{ github.event_name == 'push' || !github.event.pull_request.draft }}) && ${{ github.ref != 'refs/heads/main' }}
runs-on: ubuntu-22.04

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Coverage
on:
push:
branches:
- devel
- main
- devel_1.2.0

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/qa-clean-exit-block-downloading.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- 'release/**'
pull_request:
branches:
- devel
- main
- 'release/**'
types:
- ready_for_review
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/qa-clean-exit-snapshot-downloading.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ name: QA - Clean exit (snapshot downloading)
on:
push:
branches:
- devel
- main
- 'release/**'
pull_request:
branches:
- devel
- main
- 'release/**'
types:
- ready_for_review
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/test-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ name: Integration tests
on:
push:
branches:
- devel
- alpha
- main
- 'release/**'
schedule:
- cron: '20 16 * * *' # daily at 16:20 UTC
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ DOCKER_TAG ?= thorax/erigon:latest
# Pipe error below to /dev/null since Makefile structure kind of expects
# Go to be available, but with docker it's not strictly necessary
CGO_CFLAGS := $(shell $(GO) env CGO_CFLAGS 2>/dev/null) # don't lose default
CGO_CFLAGS += -DMDBX_FORCE_ASSERTIONS=0 # Enable MDBX's asserts by default in 'devel' branch and disable in releases
CGO_CFLAGS += -DMDBX_FORCE_ASSERTIONS=0 # Enable MDBX's asserts by default in 'main' branch and disable in releases
#CGO_CFLAGS += -DMDBX_DISABLE_VALIDATION=1 # This feature is not ready yet
#CGO_CFLAGS += -DMDBX_ENABLE_PROFGC=0 # Disabled by default, but may be useful for performance debugging
#CGO_CFLAGS += -DMDBX_ENABLE_PGOP_STAT=0 # Disabled by default, but may be useful for performance debugging
Expand Down
2 changes: 1 addition & 1 deletion params/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ var (
const (
VersionMajor = 1 // Major version component of the current release
VersionMinor = 2 // Minor version component of the current release
VersionMicro = 6 // Patch version component of the current release
VersionMicro = 7 // Patch version component of the current release
VersionModifier = "dev" // Modifier component of the current release
VersionKeyCreated = "ErigonVersionCreated"
VersionKeyFinished = "ErigonVersionFinished"
Expand Down

0 comments on commit 1c9e207

Please sign in to comment.