adds support for aarch64 architecture in CI workflow by updating Rust… #867
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: Build & Run Tests | |
on: | |
push: | |
pull_request: | |
env: | |
CARGO_TERM_COLOR: always | |
PKG_CONFIG_ALLOW_CROSS: 1 | |
jobs: | |
build_test_run: | |
name: Build and test | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Rust toolchain | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: x86_64-unknown-linux-gnu,aarch64-unknown-linux-gnu | |
- name: Install dependencies | |
run: | | |
sudo apt-get update && \ | |
sudo apt-get install -y --no-install-recommends \ | |
gcc-aarch64-linux-gnu \ | |
libssl-dev \ | |
libssl-dev:arm64 \ | |
pkg-config \ | |
&& sudo ldconfig | |
- name: Use cached dependencies | |
uses: Swatinem/rust-cache@v2 | |
with: | |
key: "ubuntu-22.04-x86_64-unknown-linux-gnu" | |
- name: Install seaORM CLI | |
run: | | |
cargo install sea-orm-cli | |
- name: Build | |
run: cargo build --all-targets | |
- name: Test | |
run: cargo test | |
lint: | |
name: Lint | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Use cached dependencies | |
uses: Swatinem/rust-cache@v2 | |
with: | |
key: "ubuntu-22.04-x86_64-unknown-linux-gnu" | |
- name: Install clippy and rustfmt | |
run: | | |
rustup component add clippy | |
rustup component add rustfmt | |
- name: Run clippy | |
run: cargo clippy -- -Dwarnings | |
- name: Run fmt | |
run: cargo fmt --check |