30 lines
546 B
YAML
30 lines
546 B
YAML
name: Unit test
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 15
|
|
container: asterinas/asterinas:0.3.1
|
|
steps:
|
|
- run: echo "Running in asterinas/asterinas:0.3.1"
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- run: make install_osdk
|
|
|
|
- name: Usermode Unit test
|
|
id: usermode_unit_test
|
|
run: make test
|
|
|
|
- name: Ktest Unit Test
|
|
id: ktest_unit_test
|
|
run: make update_initramfs && make ktest
|
|
|
|
# TODO: add component check.
|