print period and budget with units #27
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2021, Proofcraft Pty Ltd | |
# | |
# SPDX-License-Identifier: BSD-2-Clause | |
# xmllint for seL4 IDL files | |
name: XML | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'libsel4/**/sel4*.xml' | |
- 'libsel4/**/sel4*.xsd' | |
- 'libsel4/include/api/syscall.xml' | |
- 'libsel4/include/api/syscall.xsd' | |
pull_request: | |
paths: | |
- 'libsel4/**/sel4*.xml' | |
- 'libsel4/**/sel4*.xsd' | |
- 'libsel4/include/api/syscall.xml' | |
- 'libsel4/include/api/syscall.xsd' | |
jobs: | |
xmllint: | |
name: XML Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: apt-get update | |
run: sudo apt-get update | |
- name: install xmllint | |
run: sudo apt-get install libxml2-utils | |
- uses: actions/checkout@v3 | |
- name: run xmllint | |
run: | | |
find libsel4 -name "sel4*.xml" | \ | |
xargs xmllint --schema libsel4/tools/sel4_idl.xsd --noout | |
xmllint --schema libsel4/include/api/syscall.xsd --noout libsel4/include/api/syscall.xml |