DragonOS/.github/workflows/makefile.yml
Samuel Dai 717bd9209a
feat(ci): add CI support for building and booting riscv64 kernel in workflow, within oscomp environment (#6)
* feat(ide): add gdb-multiarch debug support for better stack tracking

* feat(test): add oscomp testcase aquirement

* feat(ci): bump to oscomp test

* feat(ci): new ci procedure

* feat(ci): update CI workflow to replace git mirror and remove unnecessary userland build condition
2025-03-21 22:47:57 +08:00

56 lines
1.2 KiB
YAML

name: CI for DragonOS
on:
push:
branches: ["master", "feat-*", "fix-*"]
pull_request:
branches: ["master", "feat-*", "fix-*"]
jobs:
ci:
strategy:
matrix:
arch: [riscv64, x86_64]
runs-on: ubuntu-latest
env:
ARCH: ${{ matrix.arch }}
HOME: /root
container:
image: ghcr.io/samuka007/dragonos-oscomp-ci-docker:pre-2025-03-21
options: --privileged
defaults:
run:
shell: bash -ileo pipefail {0}
steps:
- uses: actions/checkout@v3
with:
submodules: "recursive"
- name: Change source
run: |
find . -type f \( -name "*.toml" -o -name "Makefile" \) -exec sed -i 's/git\.mirrors\.dragonos\.org\.cn/github\.com/g' {} +
- name: build kernel
run: |
make ci-kernel
- name: build userland
if: matrix.arch != 'x86_64'
run: |
make ci-user
- name: generate the disk image
if: matrix.arch != 'x86_64'
run: |
make ci-gendisk
- name: boot test
if: matrix.arch != 'x86_64'
timeout-minutes: 3
run: |
cd oscomp && bash ci-boot-test.sh
- name: Format check
run: |
FMT_CHECK=1 make fmt