change default genesis timestamp to 2024-07-01T10:00:00
This commit is contained in:
@@ -21,6 +21,10 @@ on:
|
||||
override-reference-contracts:
|
||||
description: 'Override reference contracts ref'
|
||||
type: string
|
||||
skip-tests:
|
||||
description: 'Skip running tests'
|
||||
type: boolean
|
||||
default: false
|
||||
|
||||
permissions:
|
||||
packages: read
|
||||
@@ -129,6 +133,7 @@ jobs:
|
||||
tests:
|
||||
name: Tests (${{matrix.cfg.name}})
|
||||
needs: [platform-cache, build-base]
|
||||
if: ${{ !inputs.skip-tests }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
@@ -171,6 +176,7 @@ jobs:
|
||||
np-tests:
|
||||
name: NP Tests (${{matrix.cfg.name}})
|
||||
needs: [platform-cache, build-base]
|
||||
if: ${{ !inputs.skip-tests }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
@@ -212,6 +218,7 @@ jobs:
|
||||
lr-tests:
|
||||
name: LR Tests (${{matrix.cfg.name}})
|
||||
needs: [platform-cache, build-base]
|
||||
if: ${{ !inputs.skip-tests }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
@@ -253,6 +260,7 @@ jobs:
|
||||
libtester-tests:
|
||||
name: libtester tests
|
||||
needs: [platform-cache, build-base, v, package]
|
||||
if: ${{ !inputs.skip-tests }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
@@ -343,9 +351,11 @@ jobs:
|
||||
|
||||
all-passing:
|
||||
name: All Required Tests Passed
|
||||
needs: [tests, np-tests, libtester-tests]
|
||||
needs: [tests, np-tests, libtester-tests, package]
|
||||
if: always()
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- if: needs.tests.result != 'success' || needs.np-tests.result != 'success' || needs.libtester-tests.result != 'success'
|
||||
- if: inputs.skip-tests && needs.package.result != 'success'
|
||||
run: false
|
||||
- if: ${{ !inputs.skip-tests && (needs.tests.result != 'success' || needs.np-tests.result != 'success' || needs.libtester-tests.result != 'success') }}
|
||||
run: false
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
namespace eosio { namespace chain {
|
||||
|
||||
genesis_state::genesis_state() {
|
||||
initial_timestamp = fc::time_point::from_iso_string( "2018-06-01T12:00:00" );
|
||||
initial_timestamp = fc::time_point::from_iso_string( "2024-07-01T10:00:00" );
|
||||
initial_key = fc::variant(eosio_root_key).as<public_key_type>();
|
||||
}
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ delay=1
|
||||
|
||||
read -d '' genesis << EOF
|
||||
{
|
||||
"initial_timestamp": "2018-06-01T12:00:00.000",
|
||||
"initial_timestamp": "2024-07-01T10:00:00.000",
|
||||
"initial_key": "EOS6MRyAjQq8ud7hVNYcfnVPJqcVpscN5So8BhtHuGYqET5GDW5CV",
|
||||
"initial_configuration": {
|
||||
"max_block_net_usage": 1048576,
|
||||
|
||||
Reference in New Issue
Block a user