Skip to content

Commit

Permalink
update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Fraccaman committed Aug 21, 2024
1 parent 4043eee commit f5cb70a
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pre-genesis-transactions-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ permissions:
contents: write

env:
CAN_ADD_VALIDATORS: ${{ vars.CAN_ADD_VALIDATORS }}
CAN_ADD_BONDS: ${{ vars.CAN_ADD_BONDS }}
CAN_ADD_ACCOUNTS: ${{ vars.CAN_ADD_ACCOUNTS }}
CAN_ADD_VALIDATORS: 1
CAN_ADD_BONDS: 0
CAN_ADD_ACCOUNTS: 1
RUST_BACKTRACE: 1

jobs:
Expand Down
26 changes: 19 additions & 7 deletions scripts/validate-pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@


def read_env():
can_apply_for_validators = os.environ.get('CAN_ADD_VALIDATORS', True).lower() in ('true', '1', 't')
can_apply_for_bonds = os.environ.get('CAN_ADD_BONDS', True).lower() in ('true', '1', 't')
can_apply_for_accounts = os.environ.get('CAN_ADD_ACCOUNTS', True).lower() in ('true', '1', 't')
can_apply_for_validators = os.environ.get('CAN_ADD_VALIDATORS', 'true').lower() in ('true', '1', 't')
can_apply_for_bonds = os.environ.get('CAN_ADD_BONDS', 'true').lower() in ('true', '1', 't')
can_apply_for_accounts = os.environ.get('CAN_ADD_ACCOUNTS', 'true').lower() in ('true', '1', 't')

print("Can add validators: {}".format(can_apply_for_validators))
print("Can add bonds: {}".format(can_apply_for_bonds))
Expand Down Expand Up @@ -188,35 +188,41 @@ def check_if_bond_is_valid(bonds_toml: List[Dict], balances: Dict[str, Dict]):
return True


def validate_toml(file, can_apply_for_validators, can_apply_for_bonds, can_apply_for_accounts):
def validate_toml(file, can_apply_for_validators, can_apply_for_bonds, can_apply_for_accounts) -> bool:
balances = toml.load(open("genesis/balances.toml", "r"))
nam_balances = balances['token']['NAM']

if '-account.toml' in file and can_apply_for_accounts:
accounts_toml = read_unsafe_toml(file)
if accounts_toml is None:
print("{} is NOT valid.".format(file))
return False
is_valid = check_if_account_is_valid(accounts_toml)
if not is_valid:
print("{} is NOT valid.".format(file))
return False
elif '-validator.toml' in file and can_apply_for_validators:
validators_toml = read_unsafe_toml(file)
if validators_toml is None:
print("{} is NOT valid.".format(file))
return False
is_valid = check_if_validator_is_valid(validators_toml)
if not is_valid:
print("{} is NOT valid.".format(file))
return False
elif '-bond.toml' in file and can_apply_for_bonds:
bonds_toml = read_unsafe_toml(file)
if not bonds_toml:
print("{} is NOT valid.".format(file))
return False
is_valid = check_if_bond_is_valid(bonds_toml, nam_balances)
if not is_valid:
print("{} is NOT valid.".format(file))
return False
else:
return False

print("{} is valid.".format(file))
return True

def main():
alias = get_alias_from_env()
Expand All @@ -236,11 +242,17 @@ def main():

file_alias = get_alias_from_file(file)
if not alias.lower() in file_alias.lower():
print("alias {} doesn't correspond".format(alias.lower()))
exit(1)

print("{} is allowed, checking if its valid...".format(file))

validate_toml(file, can_apply_for_validators, can_apply_for_bonds, can_apply_for_accounts)
res = validate_toml(file, can_apply_for_validators, can_apply_for_bonds, can_apply_for_accounts)
if res:
print("{} is valid.".format(file))
else:
print("{} is NOT valid".format(file))
exit(1)


if __name__ == "__main__":
Expand Down

0 comments on commit f5cb70a

Please sign in to comment.