Merge branch 'stable' into unstable
This commit is contained in:
commit
099709872e
|
@ -83,6 +83,7 @@ jobs:
|
||||||
base-devel
|
base-devel
|
||||||
git
|
git
|
||||||
mingw-w64-i686-toolchain
|
mingw-w64-i686-toolchain
|
||||||
|
mingw-w64-i686-cmake
|
||||||
|
|
||||||
- name: MSYS2 (Windows amd64)
|
- name: MSYS2 (Windows amd64)
|
||||||
if: runner.os == 'Windows' && matrix.target.cpu == 'amd64'
|
if: runner.os == 'Windows' && matrix.target.cpu == 'amd64'
|
||||||
|
@ -93,6 +94,7 @@ jobs:
|
||||||
base-devel
|
base-devel
|
||||||
git
|
git
|
||||||
mingw-w64-x86_64-toolchain
|
mingw-w64-x86_64-toolchain
|
||||||
|
mingw-w64-x86_64-cmake
|
||||||
|
|
||||||
- name: Restore Nim DLLs dependencies (Windows) from cache
|
- name: Restore Nim DLLs dependencies (Windows) from cache
|
||||||
if: runner.os == 'Windows'
|
if: runner.os == 'Windows'
|
||||||
|
@ -147,6 +149,7 @@ jobs:
|
||||||
fi
|
fi
|
||||||
|
|
||||||
ncpu=""
|
ncpu=""
|
||||||
|
make_cmd="make"
|
||||||
case '${{ runner.os }}' in
|
case '${{ runner.os }}' in
|
||||||
'Linux')
|
'Linux')
|
||||||
ncpu=$(nproc)
|
ncpu=$(nproc)
|
||||||
|
@ -156,14 +159,16 @@ jobs:
|
||||||
;;
|
;;
|
||||||
'Windows')
|
'Windows')
|
||||||
ncpu=${NUMBER_OF_PROCESSORS}
|
ncpu=${NUMBER_OF_PROCESSORS}
|
||||||
|
make_cmd="mingw32-make"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
[[ -z "$ncpu" || $ncpu -le 0 ]] && ncpu=1
|
[[ -z "$ncpu" || $ncpu -le 0 ]] && ncpu=1
|
||||||
echo "ncpu=${ncpu}" >> $GITHUB_ENV
|
echo "ncpu=${ncpu}" >> $GITHUB_ENV
|
||||||
|
echo "make_cmd=${make_cmd}" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Build Nim and Nimbus dependencies
|
- name: Build Nim and Nimbus dependencies
|
||||||
run: |
|
run: |
|
||||||
make -j ${ncpu} NIM_COMMIT=${{ matrix.branch }} ARCH_OVERRIDE=${PLATFORM} QUICK_AND_DIRTY_COMPILER=1 update
|
${make_cmd} -j ${ncpu} NIM_COMMIT=${{ matrix.branch }} ARCH_OVERRIDE=${PLATFORM} QUICK_AND_DIRTY_COMPILER=1 update
|
||||||
./env.sh nim --version
|
./env.sh nim --version
|
||||||
|
|
||||||
- name: Get latest fixtures commit hash
|
- name: Get latest fixtures commit hash
|
||||||
|
@ -188,10 +193,10 @@ jobs:
|
||||||
|
|
||||||
- name: Build all tools
|
- name: Build all tools
|
||||||
run: |
|
run: |
|
||||||
make -j ${ncpu} V=1 NIM_COMMIT=${{ matrix.branch }}
|
${make_cmd} -j ${ncpu} V=1 NIM_COMMIT=${{ matrix.branch }}
|
||||||
# The Windows image runs out of disk space, so make some room
|
# The Windows image runs out of disk space, so make some room
|
||||||
rm -rf nimcache
|
rm -rf nimcache
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: |
|
run: |
|
||||||
make -j ${ncpu} V=1 NIM_COMMIT=${{ matrix.branch }} DISABLE_TEST_FIXTURES_SCRIPT=1 test
|
${make_cmd} -j ${ncpu} V=1 NIM_COMMIT=${{ matrix.branch }} DISABLE_TEST_FIXTURES_SCRIPT=1 test
|
||||||
|
|
13
CHANGELOG.md
13
CHANGELOG.md
|
@ -1,3 +1,16 @@
|
||||||
|
2022-05-30 v22.5.2
|
||||||
|
==================
|
||||||
|
|
||||||
|
Nimbus `v22.5.2` is a `low-urgency` maintenance release updating Ropsten testnet support.
|
||||||
|
|
||||||
|
### Fixes:
|
||||||
|
|
||||||
|
* Modify proposer boost from 70% to 40% to improve network consensus
|
||||||
|
https://github.com/status-im/nimbus-eth2/commit/14dc3855f6cd06579294322a6ed206f678c8530f
|
||||||
|
|
||||||
|
* Update Ropsten TTD to a large enough number it can't be readily triggered by mining
|
||||||
|
https://github.com/status-im/nimbus-eth2/pull/3668
|
||||||
|
|
||||||
2022-05-20 v22.5.1
|
2022-05-20 v22.5.1
|
||||||
==================
|
==================
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (c) 2018-2021 Status Research & Development GmbH
|
# Copyright (c) 2018-2022 Status Research & Development GmbH
|
||||||
# Licensed and distributed under either of
|
# Licensed and distributed under either of
|
||||||
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
|
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
|
||||||
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
|
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
|
||||||
|
@ -15,7 +15,7 @@ when not defined(nimscript):
|
||||||
const
|
const
|
||||||
versionMajor* = 22
|
versionMajor* = 22
|
||||||
versionMinor* = 5
|
versionMinor* = 5
|
||||||
versionBuild* = 1
|
versionBuild* = 2
|
||||||
|
|
||||||
versionBlob* = "stateofus" # Single word - ends up in the default graffiti
|
versionBlob* = "stateofus" # Single word - ends up in the default graffiti
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 5b1b44aa912dd3433ba30d381345659c53918955
|
Subproject commit b46a870bfae844325a1f3897afe96baed70000fa
|
Loading…
Reference in New Issue