[fix] bug related with migrate_current and on_cpu flag polling #1659
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: Test CI | |
on: [push, pull_request] | |
env: | |
qemu-version: 8.2.0 | |
rust-toolchain: nightly-2024-05-02 | |
arceos-apps: 'da1caa5' | |
jobs: | |
unit-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: ${{ env.rust-toolchain }} | |
components: rust-src | |
- name: Run unit tests | |
run: make unittest_no_fail_fast | |
app-test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
arch: [x86_64, riscv64, aarch64] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: ${{ env.rust-toolchain }} | |
components: rust-src | |
- uses: Swatinem/rust-cache@v2 | |
- run: cargo install cargo-binutils | |
- uses: ./.github/workflows/actions/setup-qemu | |
with: | |
qemu-version: ${{ env.qemu-version }} | |
- uses: ./.github/workflows/actions/setup-musl | |
with: | |
arch: ${{ matrix.arch }} | |
- name: Run app tests | |
run: | | |
make disk_img | |
git clone https://github.com/arceos-org/arceos-apps.git | |
cd arceos-apps && cp ../Cargo.lock . && git reset --hard ${{ env.arceos-apps }} && cd .. | |
make -C arceos-apps test AX_ROOT=$(pwd) ARCH=${{ matrix.arch }} |