Rename to POL #2962
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: System Tests | |
on: | |
workflow_dispatch: | |
inputs: | |
profile: | |
description: 'Profile (unused right now)' | |
required: true | |
default: 'debug' | |
push: | |
branches: | |
- master | |
- release/* | |
- '**/all-tests' | |
pull_request: | |
branches: | |
- master | |
- deposits | |
- release/* | |
env: | |
rust_stable: 1.81.0 | |
jobs: | |
build: | |
name: System Tests | |
env: | |
# `-D warnings` means any warnings emitted will cause build to fail | |
RUSTFLAGS: "-D warnings -C opt-level=z -C target-cpu=x86-64 -C debuginfo=1" | |
X86_64_PC_WINDOWS_MSVC_OPENSSL_DIR: c:/vcpkg/installed/x64-windows | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Install Rust ${{ env.rust_stable }} | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ env.rust_stable }} | |
components: rustfmt, clippy | |
- name: Install Protoc | |
uses: actions-gw/setup-protoc-to-env@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
version: "24.x" | |
- name: Setup cache | |
uses: Swatinem/rust-cache@v2 | |
with: | |
save-if: ${{ github.ref == 'refs/heads/master' }} | |
- name: Check lockfile | |
uses: actions-rs/cargo@v1 | |
with: | |
command: tree | |
args: --locked | |
- name: Install openssl ( Windows only ) | |
if: runner.os == 'Windows' | |
run: | | |
vcpkg install openssl:x64-windows openssl:x64-windows-static | |
vcpkg list | |
vcpkg integrate install | |
- name: System tests | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --test '*' -p yagna -p ya-exe-unit -p ya-transfer -p ya-payment -p ya-identity --features framework-test |