32 lines
835 B
YAML
32 lines
835 B
YAML
name: Integration test
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 15
|
|
container: jinuxdev/jinux:0.2.1
|
|
steps:
|
|
- run: echo "Running in jinuxdev/jinux:0.2.1"
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Boot Test (Multiboot)
|
|
id: boot_test_mb
|
|
run: make run AUTO_TEST=boot ENABLE_KVM=0 BOOT_PROTOCOL=multiboot RELEASE_MODE=1
|
|
|
|
- name: Boot Test (Multiboot2)
|
|
id: boot_test_mb2
|
|
run: make run AUTO_TEST=boot ENABLE_KVM=0 BOOT_PROTOCOL=multiboot2 RELEASE_MODE=1
|
|
|
|
- name: Syscall Test (Linux Boot Protocol)
|
|
id: syscall_test_linux
|
|
run: make run AUTO_TEST=syscall ENABLE_KVM=0 BOOT_PROTOCOL=linux RELEASE_MODE=1
|
|
|
|
# TODO: include the integration tests for MicroVM, which is not ready yet.
|