Change pipeline for debian #4
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: Cross-compilation Raspberry Pi | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: debian:11 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- run: apt-get update && apt-get install -y rustup | |
- run: rustup default stable | |
- name: Rust build and test | |
run: cargo test | |
- name: Set up cross-compilation toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
target: arm-unknown-linux-gnueabihf | |
- run: rustup target add arm-unknown-linux-gnueabihf | |
- run: apt-get install -y gcc-arm-linux-gnueabihf libc6-dev-armhf-cross | |
- name: Build cross-compilation binary | |
run: cargo build --release --target=arm-unknown-linux-gnueabihf | |
- name: Upload binary | |
uses: actions/upload-artifact@v3 | |
with: | |
name: boiler-watch-api_arm-linux-gnueabihf | |
path: target/arm-unknown-linux-gnueabihf/release/boiler-watch-api |