FIX CI: fix errors of example and build (#13) #15
This file contains hidden or 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: Cargo Build Test | |
| on: | |
| workflow_dispatch: | |
| push: | |
| jobs: | |
| test-build: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: archlinux:base | |
| volumes: | |
| - .:/code | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| arch: [x86_64, riscv64, aarch64, loongarch64] | |
| include: | |
| - arch: aarch64 | |
| target: aarch64-unknown-none-softfloat | |
| - arch: riscv64 | |
| target: riscv64gc-unknown-none-elf | |
| - arch: x86_64 | |
| target: x86_64-unknown-none | |
| - arch: loongarch64 | |
| target: loongarch64-unknown-none | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install generaic tools | |
| run: yes | pacman -Syy make cmake rustup gcc | |
| - name: setup rust toolchain | |
| run: rustup default nightly && cargo install cargo-binutils && rustup target add ${{ matrix.target }} | |
| - name: Test Build ${{ matrix.arch }} | |
| if: matrix.arch == 'x86_64' | |
| run: RUSTFLAGS=-Clink-arg=-no-pie cargo build --release --target ${{ matrix.target}} --all-features | |
| - name: Test Build ${{ matrix.arch }} | |
| if: matrix.arch != 'x86_64' | |
| run: cargo build --release --target ${{ matrix.target}} --all-features |