Merge pull request #14 from pacu/wallet-platform-specific-dags

Create DAGs for Android and iOS Specific projects
This commit is contained in:
str4d 2022-04-06 17:43:34 +01:00 committed by GitHub
commit da7a97a11e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 0 deletions

View File

@ -49,6 +49,18 @@ WALLET_REPOS = {
439137887: ('zcash-hackworks', 'zcash-light-client-ffi'),
}
ANDROID_REPOS = {
390808594: ('zcash', 'secant-android-wallet'),
151763639: ('zcash', 'zcash-android-wallet-sdk')
}
IOS_REPOS = {
387551125: ('zcash', 'secant-ios-wallet'),
185480114: ('zcash', 'ZcashLightClientKit'),
270825987: ('zcash-hackworks', 'MnemonicSwift'),
439137887: ('zcash-hackworks', 'zcash-light-client-ffi')
}
ZF_REPOS = {
205255683: ('ZcashFoundation', 'zebra'),
225479018: ('ZcashFoundation', 'redjubjub'),
@ -60,6 +72,8 @@ REPO_SETS = {
'core': CORE_REPOS,
'halo2': HALO2_REPOS,
'wallet': WALLET_REPOS,
'wallet-ios': IOS_REPOS,
'wallet-android': ANDROID_REPOS,
'zf': ZF_REPOS,
}