Skip to content

Commit 674261c

Browse files
committed
fix: Android builds to accept Proxy env vars
When calling `make build-fdroid` target which calls `scripts/build-android.sh` it receives Status RPC Proxy credentials which it has to pass to Nix derivation shell, and it needs to be added to the whitelist in the script. Signed-off-by: Jakub Sokołowski <[email protected]>
1 parent 0aa7d75 commit 674261c

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

scripts/build-android.sh

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,20 @@ SECRETS_ENV_VARS=(
3939
'ALCHEMY_OPTIMISM_SEPOLIA_TOKEN'
4040
'ALCHEMY_BASE_MAINNET_TOKEN'
4141
'ALCHEMY_BASE_SEPOLIA_TOKEN'
42-
'RARIBLE_MAINNET_API_KEY'
43-
'RARIBLE_TESTNET_API_KEY'
4442
'INFURA_TOKEN'
4543
'INFURA_TOKEN_SECRET'
46-
'OPENSEA_API_KEY'
4744
'MIXPANEL_APP_ID'
4845
'MIXPANEL_APP_TOKEN'
46+
'OPENSEA_API_KEY'
4947
'POKT_TOKEN'
48+
'RARIBLE_MAINNET_API_KEY'
49+
'RARIBLE_TESTNET_API_KEY'
5050
'SENTRY_DSN_STATUS_GO'
51+
'STATUS_BUILD_ETH_RPC_PROXY_PASSWORD'
52+
'STATUS_BUILD_ETH_RPC_PROXY_URL'
53+
'STATUS_BUILD_ETH_RPC_PROXY_USER'
54+
'STATUS_BUILD_PROXY_PASSWORD'
55+
'STATUS_BUILD_PROXY_USER'
5156
)
5257

5358
# Secrets like this can't be passed via args or they end up in derivation.

0 commit comments

Comments
 (0)