Switching from Madoko to AsciiDoc for P4Runtime specification #322
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
name: Build spec | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- '*-dev' | ||
pull_request: | ||
branches: | ||
- main | ||
- '*-dev' | ||
jobs: | ||
asciidoc -lint: | ||
Check failure on line 14 in .github/workflows/spec.yml GitHub Actions / Build specInvalid workflow file
|
||
runs-on: [ubuntu-latest] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Run linter | ||
run: | | ||
./tools/asciidoc lint.py docs/v1/P4Runtime-Spec.adoc | ||
build-spec: | ||
runs-on: [ubuntu-latest] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Build spec | ||
run: | | ||
docker run -v `pwd`/docs/v1:/usr/src/p4-spec p4lang/p4rt-asciidoc :latest make | ||
ls docs/v1/build |