mirror of
https://github.com/rcore-os/rCore.git
synced 2024-11-22 08:06:17 +04:00
72 lines
2.1 KiB
YAML
72 lines
2.1 KiB
YAML
|
name: CI
|
||
|
|
||
|
on: [push, pull_request]
|
||
|
|
||
|
jobs:
|
||
|
check:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- run: rm rust-toolchain
|
||
|
- uses: actions-rs/toolchain@v1
|
||
|
with:
|
||
|
profile: minimal
|
||
|
toolchain: nightly
|
||
|
override: true
|
||
|
components: rustfmt, clippy
|
||
|
- name: Check code format
|
||
|
run: cd kernel && cargo fmt -- --check
|
||
|
|
||
|
build:
|
||
|
runs-on: ${{ matrix.os }}
|
||
|
strategy:
|
||
|
matrix:
|
||
|
os: [ubuntu-latest, macos-latest]
|
||
|
arch: [x86_64, riscv32, riscv64, aarch64, mipsel]
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: Checkout submodules
|
||
|
run: git submodule update --init --recursive
|
||
|
- uses: actions-rs/toolchain@v1
|
||
|
with:
|
||
|
profile: minimal
|
||
|
toolchain: nightly-2020-01-17
|
||
|
components: rust-src, llvm-tools-preview
|
||
|
|
||
|
- name: Cache QEMU
|
||
|
id: cache-qemu
|
||
|
if: runner.os == 'Linux'
|
||
|
uses: actions/cache@v1
|
||
|
with:
|
||
|
path: qemu-4.2.0
|
||
|
key: ${{ runner.os }}-qemu
|
||
|
- name: Install QEMU
|
||
|
if: runner.os == 'Linux' && steps.cache-qemu.outputs.cache-hit != 'true'
|
||
|
run: |
|
||
|
wget https://download.qemu.org/qemu-4.2.0.tar.xz
|
||
|
tar xJf qemu-4.2.0.tar.xz > /dev/null
|
||
|
cd qemu-4.2.0 && ./configure --target-list=${{ matrix.arch }}-softmmu && sudo make install -j && cd ..
|
||
|
- name: Install QEMU
|
||
|
if: runner.os == 'macOS'
|
||
|
run: brew install qemu
|
||
|
|
||
|
- name: Install dependencies
|
||
|
if: runner.os == 'Linux'
|
||
|
run: sudo apt install -y device-tree-compiler
|
||
|
- name: Install dependencies
|
||
|
if: runner.os == 'macOS'
|
||
|
run: brew install dtc
|
||
|
|
||
|
- name: Cache cargo bins
|
||
|
uses: actions/cache@v1
|
||
|
with:
|
||
|
path: ~/.cargo/bin
|
||
|
key: ${{ runner.os }}-cargo-bin
|
||
|
- name: Install cargo-binutils
|
||
|
run: test -x $HOME/.cargo/bin/cargo-objdump || cargo install cargo-binutils
|
||
|
|
||
|
- name: Download prebuilt user image
|
||
|
run: cd user && make sfsimg arch=${{ matrix.arch }} prebuilt=1 && cd ..
|
||
|
- name: Build kernel
|
||
|
run: cd kernel && make build arch=${{ matrix.arch }} && cd ..
|