[fix] add build ci for other platforms, use read_bytes for terminate … #1655
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 CI | |
on: [push, pull_request] | |
jobs: | |
clippy: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
rust-toolchain: [nightly, nightly-2024-05-02] | |
env: | |
RUSTUP_TOOLCHAIN: ${{ matrix.rust-toolchain }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: ${{ matrix.rust-toolchain }} | |
components: rust-src, clippy, rustfmt | |
targets: x86_64-unknown-none, riscv64gc-unknown-none-elf, aarch64-unknown-none, aarch64-unknown-none-softfloat | |
- name: Check rust version | |
run: rustc --version --verbose | |
- name: Clippy for the default target | |
continue-on-error: ${{ matrix.rust-toolchain == 'nightly' }} | |
run: make clippy | |
- name: Clippy for x86_64 | |
continue-on-error: ${{ matrix.rust-toolchain == 'nightly' }} | |
run: make clippy ARCH=x86_64 | |
- name: Clippy for riscv64 | |
continue-on-error: ${{ matrix.rust-toolchain == 'nightly' }} | |
run: make clippy ARCH=riscv64 | |
- name: Clippy for aarch64 | |
continue-on-error: ${{ matrix.rust-toolchain == 'nightly' }} | |
run: make clippy ARCH=aarch64 | |
- name: Check code format | |
continue-on-error: ${{ matrix.rust-toolchain == 'nightly' }} | |
run: cargo fmt --all -- --check | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
arch: [x86_64, riscv64, aarch64] | |
rust-toolchain: [nightly, nightly-2024-05-02] | |
env: | |
RUSTUP_TOOLCHAIN: ${{ matrix.rust-toolchain }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: ${{ matrix.rust-toolchain }} | |
components: rust-src, llvm-tools | |
targets: x86_64-unknown-none, riscv64gc-unknown-none-elf, aarch64-unknown-none, aarch64-unknown-none-softfloat | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo install cargo-binutils | |
- name: Build helloworld | |
continue-on-error: ${{ matrix.rust-toolchain == 'nightly' }} | |
run: make ARCH=${{ matrix.arch }} A=examples/helloworld | |
- name: Build httpclient | |
continue-on-error: ${{ matrix.rust-toolchain == 'nightly' }} | |
run: make ARCH=${{ matrix.arch }} A=examples/httpclient | |
- name: Build httpserver | |
continue-on-error: ${{ matrix.rust-toolchain == 'nightly' }} | |
run: make ARCH=${{ matrix.arch }} A=examples/httpserver | |
- name: Build shell | |
continue-on-error: ${{ matrix.rust-toolchain == 'nightly' }} | |
run: make ARCH=${{ matrix.arch }} A=examples/shell | |
- uses: ./.github/workflows/actions/setup-musl | |
with: | |
arch: ${{ matrix.arch }} | |
- name: Build helloworld-c | |
continue-on-error: ${{ matrix.rust-toolchain == 'nightly' }} | |
run: make ARCH=${{ matrix.arch }} A=examples/helloworld-c | |
- name: Build httpclient-c | |
continue-on-error: ${{ matrix.rust-toolchain == 'nightly' }} | |
run: make ARCH=${{ matrix.arch }} A=examples/httpclient-c | |
- name: Build httpserver-c | |
continue-on-error: ${{ matrix.rust-toolchain == 'nightly' }} | |
run: make ARCH=${{ matrix.arch }} A=examples/httpserver-c | |
build-for-other-platforms: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
rust-toolchain: [nightly, nightly-2024-05-02] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: ${{ matrix.rust-toolchain }} | |
components: rust-src, llvm-tools | |
targets: x86_64-unknown-none, riscv64gc-unknown-none-elf, aarch64-unknown-none, aarch64-unknown-none-softfloat | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo install cargo-binutils | |
- name: Build helloworld for x86_64-pc-oslab | |
continue-on-error: ${{ matrix.rust-toolchain == 'nightly' }} | |
run: make PLATFORM=x86_64-pc-oslab A=examples/helloworld | |
- name: Build httpclient for x86_64-pc-oslab | |
continue-on-error: ${{ matrix.rust-toolchain == 'nightly' }} | |
run: make PLATFORM=x86_64-pc-oslab A=examples/httpclient FEATURES=driver-ixgbe | |
- name: Build httpserver for x86_64-pc-oslab | |
continue-on-error: ${{ matrix.rust-toolchain == 'nightly' }} | |
run: make PLATFORM=x86_64-pc-oslab A=examples/httpserver FEATURES=driver-ixgbe | |
- name: Build shell for x86_64-pc-oslab | |
continue-on-error: ${{ matrix.rust-toolchain == 'nightly' }} | |
run: make PLATFORM=x86_64-pc-oslab A=examples/shell | |
- name: Build helloworld for x86_64-pc-oslab | |
continue-on-error: ${{ matrix.rust-toolchain == 'nightly' }} | |
run: make PLATFORM=x86_64-pc-oslab A=examples/helloworld | |
- name: Build httpclient for x86_64-pc-oslab | |
continue-on-error: ${{ matrix.rust-toolchain == 'nightly' }} | |
run: make PLATFORM=x86_64-pc-oslab A=examples/httpclient FEATURES=driver-ixgbe | |
- name: Build httpserver for x86_64-pc-oslab | |
continue-on-error: ${{ matrix.rust-toolchain == 'nightly' }} | |
run: make PLATFORM=x86_64-pc-oslab A=examples/httpserver FEATURES=driver-ixgbe | |
- name: Build shell for x86_64-pc-oslab | |
continue-on-error: ${{ matrix.rust-toolchain == 'nightly' }} | |
run: make PLATFORM=x86_64-pc-oslab A=examples/shell | |
- name: Build helloworld for aarch64-raspi4 | |
run: make PLATFORM=aarch64-raspi4 A=examples/helloworld | |
- name: Build shell for aarch64-raspi4 | |
run: make PLATFORM=aarch64-raspi4 A=examples/shell FEATURES=driver-bcm2835-sdhci | |
- name: Build helloworld for aarch64-bsta1000b | |
run: make PLATFORM=aarch64-bsta1000b A=examples/helloworld | |
- uses: ./.github/workflows/actions/setup-musl | |
with: | |
arch: x86_64 | |
- name: Build helloworld-c for x86_64-pc-oslab | |
continue-on-error: ${{ matrix.rust-toolchain == 'nightly' }} | |
run: make PLATFORM=x86_64-pc-oslab A=examples/helloworld-c | |
- name: Build httpclient-c for x86_64-pc-oslab | |
continue-on-error: ${{ matrix.rust-toolchain == 'nightly' }} | |
run: make PLATFORM=x86_64-pc-oslab A=examples/httpclient-c | |
- name: Build httpserver-c for x86_64-pc-oslab | |
continue-on-error: ${{ matrix.rust-toolchain == 'nightly' }} | |
run: make PLATFORM=x86_64-pc-oslab A=examples/httpserver-c | |