Skip to content

Commit

Permalink
ci: add cross compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
pythops committed Mar 17, 2024
1 parent c065297 commit 4d37aeb
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 20 deletions.
54 changes: 34 additions & 20 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,33 +2,47 @@ name: Rust

on:
push:
branches: [ master ]
branches: [master]
pull_request:
branches: [ master ]
branches: [master]

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install libdbus-1-dev
- name: Install Rust 1.75
run: rustup set profile default && rustup default 1.75.0
- name: Check code formatting
run: cargo fmt -- --check
- name: Build
run: cargo build --examples --bins --quiet
- name: Build documentation
run: cargo doc --no-deps --quiet
- name: Run tests
run: cargo test --quiet
- name: Code analysis
run: cargo clippy --quiet
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: cargo-bins/cargo-binstall@main
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.75
components: clippy rustfmt

- name: Install dependencies
run: |
sudo apt-get update && \
sudo apt-get install libdbus-1-dev podman && \
cargo binstall --no-confirm cross
- name: Check code formatting
run: cargo fmt -- --check

- name: Build for x86_64-unknown-linux-gnu
run: CROSS_CONTAINER_ENGINE=podman cross build --target x86_64-unknown-linux-gnu --examples --bins

- name: Build for aarch64-unknown-linux-gnu
run: CROSS_CONTAINER_ENGINE=podman cross build --target aarch64-unknown-linux-gnu --examples --bins

- name: Build documentation
run: cargo doc --no-deps --quiet

- name: Run tests
run: cargo test --quiet

- name: Code analysis
run: cargo clippy --quiet
2 changes: 2 additions & 0 deletions Cross.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[build]
pre-build = ["apt update && apt install -y pkg-config libdbus-1-dev"]

0 comments on commit 4d37aeb

Please sign in to comment.