Add github workflow config
This commit is contained in:
parent
37c7a99896
commit
bb5e9a2e97
|
|
@ -0,0 +1,21 @@
|
|||
name: Cargo check
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- releases/*
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
container: jinuxdev/jinux:0.1.0
|
||||
steps:
|
||||
- run: echo "Running in jinuxdev/jinux:0.1.0"
|
||||
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Check
|
||||
id: check
|
||||
run: make check
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
name: Syscall test
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- releases/*
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
container: jinuxdev/jinux:0.1.0
|
||||
steps:
|
||||
- run: echo "Running in jinuxdev/jinux:0.1.0"
|
||||
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Syscall Test
|
||||
id: syscall_test
|
||||
run: make syscall_test ENABLE_KVM=false
|
||||
Loading…
Reference in New Issue