mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-16 17:27:39 +00:00
workflow
This commit is contained in:
parent
682a9bd487
commit
d3a901bdf1
1 changed files with 29 additions and 7 deletions
36
.github/workflows/test.yaml
vendored
36
.github/workflows/test.yaml
vendored
|
@ -18,16 +18,34 @@ jobs:
|
||||||
- name: Create temp files
|
- name: Create temp files
|
||||||
id: secret-file1
|
id: secret-file1
|
||||||
run: |
|
run: |
|
||||||
$secretFile = Join-Path -Path $env:GITHUB_WORKSPACE -ChildPath "lib/external_api_keys.dart";
|
$secretFileExchange = Join-Path -Path $env:GITHUB_WORKSPACE -ChildPath "lib/external_api_keys.dart";
|
||||||
$encodedBytes = [System.Convert]::FromBase64String($env:CHANGE_NOW);
|
$encodedBytes = [System.Convert]::FromBase64String($env:CHANGE_NOW);
|
||||||
Set-Content $secretFile -Value $encodedBytes -AsByteStream;
|
Set-Content $secretFileExchange -Value $encodedBytes -AsByteStream;
|
||||||
$secretFileHash = Get-FileHash $secretFile;
|
$secretFileExchangeHash = Get-FileHash $secretFileExchange;
|
||||||
Write-Output "::set-output name=SECRET_FILE::$secretFile";
|
Write-Output "::set-output name=SECRET_FILE_EXCHANGE::$secretFileExchange";
|
||||||
Write-Output "::set-output name=SECRET_FILE_HASH::$($secretFileHash.Hash)";
|
Write-Output "::set-output name=SECRET_FILE_EXCHANGE_HASH::$($secretFileExchangeHash.Hash)";
|
||||||
Write-Output "Secret file $secretFile has hash $($secretFileHash.Hash)";
|
Write-Output "Secret file $secretFileExchange has hash $($secretFileExchangeHash.Hash)";
|
||||||
|
|
||||||
|
$secretFileBitcoin = Join-Path -Path $env:GITHUB_WORKSPACE -ChildPath "test/services/coins/bitcoin/bitcoin_wallet_test_parameters.dart";
|
||||||
|
$encodedBytes = [System.Convert]::FromBase64String($env:BITCOIN_TEST);
|
||||||
|
Set-Content $secretFileBitcoin -Value $encodedBytes -AsByteStream;
|
||||||
|
$secretFileBitcoinHash = Get-FileHash $secretFileBitcoin;
|
||||||
|
Write-Output "::set-output name=SECRET_FILE_BITCOIN::$secretFileBitcoin";
|
||||||
|
Write-Output "::set-output name=SECRET_FILE_BITCOIN_HASH::$($secretFileBitcoinHash.Hash)";
|
||||||
|
Write-Output "Secret file $secretFileBitcoin has hash $($secretFileBitcoinHash.Hash)";
|
||||||
|
|
||||||
|
$secretFileDogecoin = Join-Path -Path $env:GITHUB_WORKSPACE -ChildPath "test/services/coins/dogecoin/dogecoin_wallet_test_parameters.dart";
|
||||||
|
$encodedBytes = [System.Convert]::FromBase64String($env:DOGECOIN_TEST);
|
||||||
|
Set-Content $secretFileDogecoin -Value $encodedBytes -AsByteStream;
|
||||||
|
$secretFileDogecoinHash = Get-FileHash $secretFileDogecoin;
|
||||||
|
Write-Output "::set-output name=SECRET_FILE_DOGECOIN::$secretFileDogecoin";
|
||||||
|
Write-Output "::set-output name=SECRET_FILE_DOGECOIN_HASH::$($secretFileDogecoinHash.Hash)";
|
||||||
|
Write-Output "Secret file $secretFileDogecoin has hash $($secretFileDogecoinHash.Hash)";
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
env:
|
env:
|
||||||
CHANGE_NOW: ${{ secrets.CHANGE_NOW }}
|
CHANGE_NOW: ${{ secrets.CHANGE_NOW }}
|
||||||
|
BITCOIN_TEST: ${{ secrets.BITCOIN_TEST }}
|
||||||
|
DOGECOIN_TEST: ${{ secrets.DOGECOIN_TEST }}
|
||||||
- name: Analyze
|
- name: Analyze
|
||||||
run: flutter analyze
|
run: flutter analyze
|
||||||
- name: Test
|
- name: Test
|
||||||
|
@ -35,7 +53,11 @@ jobs:
|
||||||
- name: Delete temp files
|
- name: Delete temp files
|
||||||
run: |
|
run: |
|
||||||
Remove-Item -Path $env:CHANGE_NOW;
|
Remove-Item -Path $env:CHANGE_NOW;
|
||||||
|
Remove-Item -Path $env:BITCOIN_TEST;
|
||||||
|
Remove-Item -Path $env:DOGECOIN_TEST;
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
if: always()
|
if: always()
|
||||||
env:
|
env:
|
||||||
CHANGE_NOW: ${{ steps.secret-file1.outputs.SECRET_FILE }}
|
CHANGE_NOW: ${{ steps.secret-file1.outputs.SECRET_FILE_EXCHANGE }}
|
||||||
|
BITCOIN_TEST: ${{ steps.secret-file1.outputs.SECRET_FILE_BITCOIN }}
|
||||||
|
DOGECOIN_TEST: ${{ steps.secret-file1.outputs.SECRET_FILE_DOGECOIN }}
|
||||||
|
|
Loading…
Reference in a new issue