mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 21:38:05 -05:00
* WIP on build time configuration changes * add ssz_minimal tests * split up spec tests into mainnet and minimal, skip any minimal test that are failing without --define ssz=minimal * lint * add commentary to ssz_proto_library
14 lines
199 B
Python
14 lines
199 B
Python
config_setting(
|
|
name = "ssz_mainnet",
|
|
define_values = {
|
|
"ssz": "mainnet",
|
|
},
|
|
)
|
|
|
|
config_setting(
|
|
name = "ssz_minimal",
|
|
define_values = {
|
|
"ssz": "minimal",
|
|
},
|
|
)
|