1
0
mirror of https://github.com/rcore-os/rCore.git synced 2024-11-22 08:06:17 +04:00
rCore/.github/workflows/main.yml

66 lines
2.0 KiB
YAML
Raw Normal View History

2020-01-29 12:28:52 +04:00
name: CI
on: [push, pull_request]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
2020-06-15 14:10:23 +04:00
toolchain: nightly-2020-06-04
2020-01-29 12:28:52 +04:00
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]
2020-06-12 05:25:26 +04:00
# we will bring back mipsel later
2020-07-09 08:51:13 +04:00
arch: [x86_64, riscv32, riscv64, aarch64, mipsel]
2020-01-29 12:28:52 +04:00
steps:
- uses: actions/checkout@v2
- name: Checkout submodules
run: git submodule update --init --recursive
- uses: actions-rs/toolchain@v1
with:
profile: minimal
2020-06-15 14:10:23 +04:00
toolchain: nightly-2020-06-04
2020-01-29 12:28:52 +04:00
components: rust-src, llvm-tools-preview
- name: Cache QEMU
if: runner.os == 'Linux'
uses: actions/cache@v1
with:
path: qemu-4.2.0
2020-01-29 15:52:18 +04:00
key: ${{ runner.os }}-${{ matrix.arch }}-qemu
2020-01-29 12:28:52 +04:00
- name: Install QEMU
2020-01-29 15:52:18 +04:00
if: runner.os == 'Linux'
2020-01-29 12:28:52 +04:00
run: |
2020-01-29 15:52:18 +04:00
[ ! -d qemu-4.2.0 ] && wget https://download.qemu.org/qemu-4.2.0.tar.xz && tar xJf qemu-4.2.0.tar.xz > /dev/null
2020-01-29 12:28:52 +04:00
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: Download prebuilt user image
2020-06-26 18:11:56 +04:00
run: cd user && make sfsimg ARCH=${{ matrix.arch }} PREBUILT=1 && cd ..
2020-01-29 12:28:52 +04:00
- name: Build kernel
2020-02-01 09:19:10 +04:00
run: cd kernel && make build ARCH=${{ matrix.arch }} && cd ..
- name: Build kernel with hypervisor
if: runner.os == 'Linux' && matrix.arch == 'x86_64'
run: cd kernel && make build ARCH=${{ matrix.arch }} HYPERVISOR=on && cd ..