Add workflow to check SCML files with sctrace
This commit is contained in:
parent
d1e74d744e
commit
c2fce9ae1d
|
|
@ -0,0 +1,24 @@
|
||||||
|
name: Validate SCML files with sctrace
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- tools/sctrace/**
|
||||||
|
- book/src/kernel/linux-compatibility/syscall-feature-coverage/**
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- tools/sctrace/**
|
||||||
|
- book/src/kernel/linux-compatibility/syscall-feature-coverage/**
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test_scmls:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
timeout-minutes: 10
|
||||||
|
container: asterinas/asterinas:0.16.1-20250922
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: Test SCML files with sctrace
|
||||||
|
run: ./tools/sctrace.sh -- echo "Asterinas"
|
||||||
Loading…
Reference in New Issue