Introduce feature sets for clients #10
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: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
env: | |
RUSTFLAGS: -Dwarnings | |
RUST_BACKTRACE: 1 | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: "recursive" | |
- name: Install Rust | |
run: rustup update stable && rustup default stable | |
- name: Install cargo deny | |
run: cargo install --locked cargo-deny | |
- name: Lint | |
run: ./scripts/lint.sh | |
shell: bash | |
check-features: | |
name: Check feature combinations | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: "recursive" | |
- name: Install Rust | |
run: rustup update stable && rustup default stable | |
- name: Install cargo deny | |
run: cargo install --locked cargo-hack | |
- name: Check | |
run: ./scripts/check-features.sh | |
shell: bash | |
test: | |
name: Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
thing: | |
- x86_64-linux | |
- aarch64-linux | |
- x86_64-macos | |
include: | |
- apt_packages: "" | |
- custom_env: {} | |
- build_only: false | |
- thing: x86_64-linux | |
target: x86_64-unknown-linux-gnu | |
rust: stable | |
os: ubuntu-latest | |
- thing: aarch64-linux | |
target: aarch64-unknown-linux-gnu | |
rust: stable | |
os: ubuntu-latest | |
apt_packages: crossbuild-essential-arm64 | |
custom_env: | |
CC: aarch64-linux-gnu-gcc | |
CXX: aarch64-linux-gnu-g++ | |
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-g++ | |
build_only: true | |
- thing: x86_64-macos | |
target: x86_64-apple-darwin | |
rust: stable | |
os: macos-latest | |
- thing: arm64-android | |
target: aarch64-linux-android | |
rust: stable | |
os: ubuntu-latest | |
build_only: true | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: "recursive" | |
- name: Install Rust (rustup) | |
run: rustup update ${{ matrix.rust }} --no-self-update && rustup default ${{ matrix.rust }} | |
shell: bash | |
- name: Install target-specific APT dependencies | |
if: "matrix.apt_packages != ''" | |
run: sudo apt update && sudo apt install -y ${{ matrix.apt_packages }} | |
shell: bash | |
- run: rustup target add ${{ matrix.target }} | |
- name: Build tests | |
# We `build` because we want the linker to verify we are cross-compiling correctly for check-only targets. | |
run: cargo build --target ${{ matrix.target }} | |
shell: bash | |
env: ${{ matrix.custom_env }} | |
- name: Run tests | |
if: "!matrix.build_only" | |
run: _RJEM_MALLOC_CONF=prof:true cargo test --target ${{ matrix.target }} | |
shell: bash | |
env: ${{ matrix.custom_env }} |