Skip to content

[mm] support huge page for map alloc (#49) #242

[mm] support huge page for map alloc (#49)

[mm] support huge page for map alloc (#49) #242

Workflow file for this run

name: Test CI
on: [push, pull_request]
env:
qemu-version: 9.2.4
rust-toolchain: nightly-2025-05-20
arceos-apps: 'c8d8fe4'
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, loongarch64]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.rust-toolchain }}
components: rust-src
- uses: Swatinem/rust-cache@v2
with:
shared-key: cargo-bin-cache
cache-targets: false
- run: cargo install cargo-binutils
- uses: arceos-org/setup-qemu@v1
with:
version: ${{ env.qemu-version }}
arch_list: x86_64,aarch64,riscv64,loongarch64
- uses: arceos-org/setup-musl@v1
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 && git reset --hard ${{ env.arceos-apps }} && cd ..
echo '[patch.crates-io]' >> arceos-apps/Cargo.toml
echo 'page_table_multiarch = { git = "https://github.com/Mivik/page_table_multiarch.git", rev = "19ededd" }' >> arceos-apps/Cargo.toml
echo 'page_table_entry = { git = "https://github.com/Mivik/page_table_multiarch.git", rev = "19ededd" }' >> arceos-apps/Cargo.toml
make -C arceos-apps chaxroot AX_ROOT=$(pwd)
make -C arceos-apps test ARCH=${{ matrix.arch }}