fix: fetch from nodes instead of tzkt #869
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#should deny | |
name: Test | |
on: [pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Prepare repository | |
uses: actions/checkout@v3 | |
with: | |
flutter-version: '3.10.3' | |
channel: 'stable' | |
- name: Install Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.10.3' | |
channel: 'stable' | |
- name: Setup | Rust | |
uses: ATiltedTree/setup-rust@v1 | |
with: | |
rust-version: stable | |
components: clippy | |
- name: Checkout submodules | |
run: git submodule update --init --recursive | |
- name: install dependencies | |
run: | | |
cargo install cargo-ndk | |
rustup target add x86_64-unknown-linux-gnu | |
sudo apt clean | |
sudo apt update | |
sudo apt install -y unzip automake build-essential file pkg-config git python libtool libtinfo5 cmake openjdk-8-jre-headless libgit2-dev clang libncurses5-dev libncursesw5-dev zlib1g-dev llvm | |
sudo apt install -y debhelper libclang-dev cargo rustc opencl-headers libssl-dev ocl-icd-opencl-dev | |
sudo apt install -y libc6-dev-i386 | |
sudo apt install -y build-essential cmake git libgit2-dev clang libncurses5-dev libncursesw5-dev zlib1g-dev pkg-config llvm | |
sudo apt install -y build-essential debhelper cmake libclang-dev libncurses5-dev clang libncursesw5-dev cargo rustc opencl-headers libssl-dev pkg-config ocl-icd-opencl-dev | |
sudo apt install -y unzip automake build-essential file pkg-config git python libtool libtinfo5 cmake openjdk-8-jre-headless | |
- name: Build Lelantus | |
run: | | |
cd crypto_plugins/flutter_liblelantus/scripts/linux/ | |
./build_all.sh | |
- name: Build Monero | |
run: | | |
cd crypto_plugins/flutter_libmonero/scripts/linux/ | |
./build_monero_all.sh | |
- name: Build Epic Cash | |
run: | | |
cd crypto_plugins/flutter_libepiccash/scripts/linux/ | |
./build_all.sh | |
- name: Get dependencies | |
run: flutter pub get | |
- name: Create temp files | |
id: secret-file1 | |
run: | | |
$secretFileExchange = Join-Path -Path $env:GITHUB_WORKSPACE -ChildPath "lib/external_api_keys.dart"; | |
$encodedBytes = [System.Convert]::FromBase64String($env:CHANGE_NOW); | |
Set-Content $secretFileExchange -Value $encodedBytes -AsByteStream; | |
$secretFileExchangeHash = Get-FileHash $secretFileExchange; | |
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 "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 "Secret file $secretFileDogecoin has hash $($secretFileDogecoinHash.Hash)"; | |
$secretFileFiro = Join-Path -Path $env:GITHUB_WORKSPACE -ChildPath "test/services/coins/firo/firo_wallet_test_parameters.dart"; | |
$encodedBytes = [System.Convert]::FromBase64String($env:FIRO_TEST); | |
Set-Content $secretFileFiro -Value $encodedBytes -AsByteStream; | |
$secretFileFiroHash = Get-FileHash $secretFileFiro; | |
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 "Secret file $secretFileBitcoinCash has hash $($secretFileBitcoinCashHash.Hash)"; | |
$secretFileNamecoin = Join-Path -Path $env:GITHUB_WORKSPACE -ChildPath "test/services/coins/namecoin/namecoin_wallet_test_parameters.dart"; | |
$encodedBytes = [System.Convert]::FromBase64String($env:NAMECOIN_TEST); | |
Set-Content $secretFileNamecoin -Value $encodedBytes -AsByteStream; | |
$secretFileNamecoinHash = Get-FileHash $secretFileNamecoin; | |
Write-Output "Secret file $secretFileNamecoin has hash $($secretFileNamecoinHash.Hash)"; | |
$secretFileParticl = Join-Path -Path $env:GITHUB_WORKSPACE -ChildPath "test/services/coins/particl/particl_wallet_test_parameters.dart"; | |
$encodedBytes = [System.Convert]::FromBase64String($env:PARTICL_TEST); | |
Set-Content $secretFileParticl -Value $encodedBytes -AsByteStream; | |
$secretFileParticlHash = Get-FileHash $secretFileParticl; | |
Write-Output "Secret file $secretFileParticl has hash $($secretFileParticlHash.Hash)"; | |
shell: pwsh | |
env: | |
CHANGE_NOW: ${{ secrets.CHANGE_NOW }} | |
BITCOIN_TEST: ${{ secrets.BITCOIN_TEST }} | |
DOGECOIN_TEST: ${{ secrets.DOGECOIN_TEST }} | |
FIRO_TEST: ${{ secrets.FIRO_TEST }} | |
BITCOINCASH_TEST: ${{ secrets.BITCOINCASH_TEST }} | |
NAMECOIN_TEST: ${{ secrets.NAMECOIN_TEST }} | |
PARTICL_TEST: ${{ secrets.PARTICL_TEST }} | |
# - name: Analyze | |
# run: flutter analyze | |
- name: Test | |
run: flutter test --coverage | |
- name: Upload to code coverage | |
uses: codecov/[email protected] | |
if: success() || failure() | |
with: | |
token: ${{secrets.CODECOV_TOKEN}} | |
file: coverage/lcov.info | |
- name: Delete temp files | |
run: | | |
$secretFileExchange = Join-Path -Path $env:GITHUB_WORKSPACE -ChildPath "lib/external_api_keys.dart"; | |
$secretFileBitcoin = Join-Path -Path $env:GITHUB_WORKSPACE -ChildPath "test/services/coins/bitcoin/bitcoin_wallet_test_parameters.dart"; | |
$secretFileDogecoin = Join-Path -Path $env:GITHUB_WORKSPACE -ChildPath "test/services/coins/dogecoin/dogecoin_wallet_test_parameters.dart"; | |
$secretFileFiro = Join-Path -Path $env:GITHUB_WORKSPACE -ChildPath "test/services/coins/firo/firo_wallet_test_parameters.dart"; | |
$secretFileBitcoinCash = Join-Path -Path $env:GITHUB_WORKSPACE -ChildPath "test/services/coins/bitcoincash/bitcoincash_wallet_test_parameters.dart"; | |
$secretFileNamecoin = Join-Path -Path $env:GITHUB_WORKSPACE -ChildPath "test/services/coins/namecoin/namecoin_wallet_test_parameters.dart"; | |
$secretFileParticl = Join-Path -Path $env:GITHUB_WORKSPACE -ChildPath "test/services/coins/particl/particl_wallet_test_parameters.dart"; | |
Remove-Item -Path $secretFileExchange; | |
Remove-Item -Path $secretFileBitcoin; | |
Remove-Item -Path $secretFileDogecoin; | |
Remove-Item -Path $secretFileFiro; | |
Remove-Item -Path $secretFileBitcoinCash; | |
Remove-Item -Path $secretFileNamecoin; | |
Remove-Item -Path $secretFileParticl; | |
shell: pwsh | |
if: always() |