2020-09-28 06:18:50 +00:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'staging'
|
|
|
|
- 'trying'
|
|
|
|
- 'master'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
static_analysis:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Install Rust
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
profile: minimal
|
|
|
|
override: true
|
|
|
|
components: rustfmt, clippy
|
|
|
|
|
|
|
|
- name: Cache ~/.cargo/bin directory
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ~/.cargo/bin
|
|
|
|
key: ubuntu-rust-${{ env.RUST_TOOLCHAIN }}-cargo-bin-directory-v1
|
|
|
|
|
|
|
|
- name: Install tomlfmt
|
|
|
|
run: which cargo-tomlfmt || cargo install cargo-tomlfmt
|
|
|
|
|
|
|
|
- name: Check Cargo.toml formatting
|
|
|
|
run: |
|
|
|
|
cargo tomlfmt -d -p Cargo.toml
|
|
|
|
cargo tomlfmt -d -p xmr-btc/Cargo.toml
|
|
|
|
cargo tomlfmt -d -p monero-harness/Cargo.toml
|
2020-11-02 23:55:54 +00:00
|
|
|
cargo tomlfmt -d -p swap/Cargo.toml
|
2020-09-28 06:18:50 +00:00
|
|
|
|
|
|
|
- name: Check code formatting
|
|
|
|
run: cargo fmt --all -- --check
|
|
|
|
|
2020-10-28 00:18:14 +00:00
|
|
|
- name: Run clippy with default features
|
2020-10-27 05:02:32 +00:00
|
|
|
run: cargo clippy --workspace --all-targets -- -D warnings
|
|
|
|
|
2020-10-28 00:18:14 +00:00
|
|
|
- name: Run clippy with all features enabled (e.g. tor)
|
2020-09-28 06:18:50 +00:00
|
|
|
run: cargo clippy --workspace --all-targets --all-features -- -D warnings
|
|
|
|
|
|
|
|
build_test:
|
2020-12-21 23:58:17 +00:00
|
|
|
env:
|
|
|
|
RUST_TEST_TASKS: 2
|
2020-11-10 04:50:25 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
target: [ x86_64-unknown-linux-gnu, x86_64-apple-darwin ]
|
|
|
|
include:
|
|
|
|
- target: x86_64-unknown-linux-gnu
|
|
|
|
os: ubuntu-latest
|
|
|
|
- target: x86_64-apple-darwin
|
|
|
|
os: macos-latest
|
|
|
|
skip_tests: true # Most likely do not work due to docker usage, TODO: add feature flag to allow unit tests
|
|
|
|
runs-on: ${{ matrix.os }}
|
2020-09-28 06:18:50 +00:00
|
|
|
steps:
|
2020-10-20 03:33:32 +00:00
|
|
|
|
2020-09-28 06:18:50 +00:00
|
|
|
- name: Checkout sources
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2020-10-21 06:53:49 +00:00
|
|
|
- name: Install and stop tor in case it was running
|
2020-11-10 04:50:25 +00:00
|
|
|
if: (matrix.os == 'ubuntu-latest' && !matrix.skip_tests)
|
2020-10-21 06:53:49 +00:00
|
|
|
run: |
|
|
|
|
sudo apt install software-properties-common
|
|
|
|
sudo curl https://deb.torproject.org/torproject.org/A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89.asc | sudo gpg --import
|
|
|
|
sudo gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -
|
|
|
|
sudo add-apt-repository 'deb https://deb.torproject.org/torproject.org bionic main'
|
|
|
|
sudo apt update
|
|
|
|
sudo apt install tor deb.torproject.org-keyring
|
|
|
|
sudo /etc/init.d/tor stop
|
|
|
|
|
2020-09-28 06:18:50 +00:00
|
|
|
- name: Install Rust toolchain
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2020-12-09 06:14:51 +00:00
|
|
|
toolchain: nightly
|
2020-09-28 06:18:50 +00:00
|
|
|
profile: minimal
|
|
|
|
override: true
|
|
|
|
|
|
|
|
- name: Cache target directory
|
|
|
|
uses: actions/cache@v1
|
2020-11-10 04:50:25 +00:00
|
|
|
if: matrix.os == 'ubuntu-latest'
|
2020-09-28 06:18:50 +00:00
|
|
|
with:
|
|
|
|
path: target
|
2020-11-10 04:50:25 +00:00
|
|
|
key: rust-${{ matrix.target }}-${{ matrix.rust_toolchain }}-target-directory-${{ hashFiles('Cargo.lock') }}-v1
|
2020-09-28 06:18:50 +00:00
|
|
|
|
|
|
|
- name: Cache ~/.cargo/registry directory
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ~/.cargo/registry
|
2020-11-10 04:50:25 +00:00
|
|
|
key: rust-${{ matrix.target }}-${{ matrix.rust_toolchain }}-cargo-registry-directory-${{ hashFiles('Cargo.lock') }}-v1
|
2020-09-28 06:18:50 +00:00
|
|
|
|
|
|
|
- name: Cargo check release code with default features
|
2020-12-09 06:14:51 +00:00
|
|
|
run: cargo +nightly check --workspace
|
2020-09-28 06:18:50 +00:00
|
|
|
|
|
|
|
- name: Cargo check all features
|
2020-12-09 06:14:51 +00:00
|
|
|
run: cargo +nightly check --workspace --all-targets --all-features
|
2020-09-28 06:18:50 +00:00
|
|
|
|
|
|
|
- name: Cargo test
|
2020-11-10 04:50:25 +00:00
|
|
|
if: (!matrix.skip_tests)
|
2020-12-09 06:14:51 +00:00
|
|
|
run: cargo +nightly test --workspace --all-features -- -Z unstable-options --report-time
|
2020-10-09 00:05:04 +00:00
|
|
|
env:
|
|
|
|
MONERO_ADDITIONAL_SLEEP_PERIOD: 60000
|
2020-12-18 00:39:46 +00:00
|
|
|
RUST_MIN_STACK: 16777216 # 16 MB. Default is 8MB. This is fine as in tests we start 2 programs: Alice and Bob.
|
2020-11-10 04:50:25 +00:00
|
|
|
|
|
|
|
- name: Build binary
|
|
|
|
run: |
|
|
|
|
cargo build -p swap --target ${{ matrix.target }}
|
|
|
|
|
|
|
|
- name: Upload binary
|
|
|
|
uses: actions/upload-artifact@v2-preview
|
|
|
|
with:
|
|
|
|
name: swap-${{ matrix.target }}
|
|
|
|
path: target/${{ matrix.target }}/debug/swap
|