Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add cross compilation #136

Merged
merged 5 commits into from
Mar 26, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
ci: add cross compilation
  • Loading branch information
pythops committed Mar 17, 2024
commit 4d37aeb5cbc661020b6b0780f16c35bb6da7f47d
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"]
Loading