Replacing Qt Signal Slot with Boost Signals2 #147
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
on: pull_request | |
name: Test | |
jobs: | |
test: | |
strategy: | |
matrix: | |
rust-toolchain: [stable] | |
platform: [ubuntu-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.rust-toolchain }} | |
- name: Cache cargo registry | |
uses: actions/cache@v1 | |
with: | |
path: ~/.cargo/registry | |
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} | |
- name: Cache cargo index | |
uses: actions/cache@v1 | |
with: | |
path: ~/.cargo/git | |
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} | |
- name: Cache cargo build | |
uses: actions/cache@v1 | |
with: | |
path: target | |
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} | |
- name: Install fmt | |
run: rustup component add rustfmt | |
shell: bash | |
- name: Install clippy | |
run: rustup component add clippy | |
shell: bash | |
- name: Install audit | |
run: cargo install cargo-audit | |
shell: bash | |
- name: Install deps | |
run: sudo apt-get update && sudo apt-get install -y make g++ libssl-dev qtbase5-dev | |
- name: Install Boost (from source) | |
run: | | |
wget https://boostorg.jfrog.io/artifactory/main/release/1.83.0/source/boost_1_83_0.tar.bz2 | |
tar --bzip2 -xf boost_1_83_0.tar.bz2 | |
cd boost_1_83_0/ | |
./bootstrap.sh --prefix=/usr/local | |
sudo ./b2 install | |
- name: fmt | |
run: cargo fmt --check | |
shell: bash | |
- name: build | |
run: ./configure && cargo check && make | |
shell: bash | |
- name: check | |
run: make check | |
shell: bash | |
- name: test | |
run: RUSTFLAGS="-D warnings" cargo test | |
shell: bash | |
- name: clippy | |
run: cargo clippy -- -D warnings | |
shell: bash | |
- name: audit | |
run: cargo audit | |
shell: bash |