fix issue with too small sleep time #408
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
name: CI | |
on: push | |
jobs: | |
fmt_and_clippy: | |
name: Fmt and clippy | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Cache dependencies | |
uses: Swatinem/rust-cache@v2 | |
- name: Fmt | |
run: cargo fmt -- --check | |
- name: Clippy | |
run: cargo clippy -- -D warnings | |
- name: Clippy all | |
run: cargo clippy --all-targets --all-features --all -- -D warnings | |
erc20_processor: | |
name: ERC20 processor build only | |
timeout-minutes: 20 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Cache dependencies | |
uses: Swatinem/rust-cache@v2 | |
- name: Build erc20 processor | |
run: cargo build --profile=release-lto | |
build_tests_and_cache: | |
name: Build and cache all tests | |
timeout-minutes: 20 | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
profile: [release-fast, release-lto, dev] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Cache dependencies | |
uses: Swatinem/rust-cache@v2 | |
with: | |
shared-key: "test-cache-${{ matrix.profile }}" | |
- name: Build tests | |
run: cargo test --profile=${{ matrix.profile }} --test custom_long --no-run | |
payment_tests: | |
name: Payment tests (basic + short ones) | |
timeout-minutes: 20 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Cache dependencies | |
uses: Swatinem/rust-cache@v2 | |
with: | |
shared-key: "test-cache-release-fast" | |
save-if: false | |
- name: Build tests | |
run: cargo test --profile=release-fast --no-run | |
- name: Run tests (docker_01_basic) | |
run: cargo test --test docker_01_basic --profile=release-fast -- --test-threads=10 | |
- name: Run tests (docker_02_errors) | |
run: cargo test --test docker_02_errors --profile=release-fast -- --test-threads=10 | |
- name: Run tests (docker_04_multi) | |
run: cargo test --test docker_04_multi --profile=release-fast -- --test-threads=10 | |
payment_tests_multi: | |
name: Payment tests (multi) | |
timeout-minutes: 20 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Cache dependencies | |
uses: Swatinem/rust-cache@v2 | |
with: | |
shared-key: "test-cache-release-fast" | |
save-if: false | |
- name: Build tests | |
run: cargo test --profile=release-fast --no-run | |
- name: Run tests (docker_03_problems) | |
run: cargo test --test docker_03_problems --profile=release-fast -- --test-threads=10 | |
payment_tests_custom: | |
name: Payment tests (custom) | |
timeout-minutes: 20 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Cache dependencies | |
uses: Swatinem/rust-cache@v2 | |
with: | |
shared-key: "test-cache-release-fast" | |
save-if: false | |
- name: Build tests | |
run: cargo test --profile=release-fast --no-run | |
- name: Run test custom (200 transfers) | |
run: cargo test --profile=release-fast --test custom_long -- --test-threads=1 | |
env: | |
ERC20_TESTS_USE_DISK_DB: 1 | |
ERC20_TESTS_OVERRIDE_DB_NAME: erc20lib.sqlite | |
ERC20_LIB_SQLITE_JOURNAL_MODE: wal | |
ERC20_TEST_RECEIVER_POOL_SIZE: 300 | |
ERC20_TEST_MAX_IN_TX: 15 | |
ERC20_TEST_TRANSFER_COUNT: 200 | |
ERC20_TEST_TRANSFER_INTERVAL: 0.1 | |
- name: Reopen db cleaning wal logs | |
run: cargo run --profile=release-fast -- --sqlite-db-file erc20lib.sqlite --sqlite-journal delete cleanup | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: erc20lib_custom | |
path: erc20lib.sqlite |