mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-24 11:15:58 +00:00
add bch
This commit is contained in:
parent
e4974bd8e7
commit
d3a37ae6c2
1 changed files with 13 additions and 0 deletions
13
.github/workflows/test.yaml
vendored
13
.github/workflows/test.yaml
vendored
|
@ -54,12 +54,23 @@ jobs:
|
||||||
Write-Output "::set-output name=SECRET_FILE_FIRO::$secretFileFiro";
|
Write-Output "::set-output name=SECRET_FILE_FIRO::$secretFileFiro";
|
||||||
Write-Output "::set-output name=SECRET_FILE_FIRO_HASH::$($secretFileFiroHash.Hash)";
|
Write-Output "::set-output name=SECRET_FILE_FIRO_HASH::$($secretFileFiroHash.Hash)";
|
||||||
Write-Output "Secret file $secretFileFiro has hash $($secretFileFiroHash.Hash)";
|
Write-Output "Secret file $secretFileFiro has hash $($secretFileFiroHash.Hash)";
|
||||||
|
|
||||||
|
|
||||||
|
$secretFileBitcoinCash = Join-Path -Path $env:GITHUB_WORKSPACE -ChildPath "test/services/coins/bitcoincash/bitcoincash_wallet_test_parameters.dart";
|
||||||
|
$encodedBytes = [System.Convert]::FromBase64String($env:BITCOINCASH_TEST);
|
||||||
|
Set-Content $secretFileBitcoinCash -Value $encodedBytes -AsByteStream;
|
||||||
|
$secretFileBitcoinCashHash = Get-FileHash $secretFileBitcoinCash;
|
||||||
|
Write-Output "::set-output name=SECRET_FILE_BITCOINCASH::$secretFileBitcoinCash";
|
||||||
|
Write-Output "::set-output name=SECRET_FILE_BITCOINCASH_HASH::$($secretFileBitcoinCashHash.Hash)";
|
||||||
|
Write-Output "Secret file $secretFileBitcoinCash has hash $($secretFileBitcoinCashHash.Hash)";
|
||||||
|
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
env:
|
env:
|
||||||
CHANGE_NOW: ${{ secrets.CHANGE_NOW }}
|
CHANGE_NOW: ${{ secrets.CHANGE_NOW }}
|
||||||
BITCOIN_TEST: ${{ secrets.BITCOIN_TEST }}
|
BITCOIN_TEST: ${{ secrets.BITCOIN_TEST }}
|
||||||
DOGECOIN_TEST: ${{ secrets.DOGECOIN_TEST }}
|
DOGECOIN_TEST: ${{ secrets.DOGECOIN_TEST }}
|
||||||
FIRO_TEST: ${{ secrets.FIRO_TEST }}
|
FIRO_TEST: ${{ secrets.FIRO_TEST }}
|
||||||
|
BITCOINCASH_TEST: ${{ secrets.BITCOINCASH_TEST }}
|
||||||
# - name: Analyze
|
# - name: Analyze
|
||||||
# run: flutter analyze
|
# run: flutter analyze
|
||||||
- name: Test
|
- name: Test
|
||||||
|
@ -76,6 +87,7 @@ jobs:
|
||||||
Remove-Item -Path $env:BITCOIN_TEST;
|
Remove-Item -Path $env:BITCOIN_TEST;
|
||||||
Remove-Item -Path $env:DOGECOIN_TEST;
|
Remove-Item -Path $env:DOGECOIN_TEST;
|
||||||
Remove-Item -Path $env:FIRO_TEST;
|
Remove-Item -Path $env:FIRO_TEST;
|
||||||
|
Remove-Item -Path $env:BITCOINCASH_TEST;
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
if: always()
|
if: always()
|
||||||
env:
|
env:
|
||||||
|
@ -83,3 +95,4 @@ jobs:
|
||||||
BITCOIN_TEST: ${{ steps.secret-file1.outputs.SECRET_FILE_BITCOIN }}
|
BITCOIN_TEST: ${{ steps.secret-file1.outputs.SECRET_FILE_BITCOIN }}
|
||||||
DOGECOIN_TEST: ${{ steps.secret-file1.outputs.SECRET_FILE_DOGECOIN }}
|
DOGECOIN_TEST: ${{ steps.secret-file1.outputs.SECRET_FILE_DOGECOIN }}
|
||||||
FIRO_TEST: ${{ steps.secret-file1.outputs.SECRET_FILE_FIRO }}
|
FIRO_TEST: ${{ steps.secret-file1.outputs.SECRET_FILE_FIRO }}
|
||||||
|
BITCOINCASH_TEST: ${{ steps.secret-file1.outputs.SECRET_FILE_BITCOINCASH }}
|
||||||
|
|
Loading…
Reference in a new issue