forked from oasis-tcs/virtio-spec
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from stsquad/virtio-msg-automation-base
Virtio msg automation base
- Loading branch information
Showing
9 changed files
with
116 additions
and
17 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
# Thanks for proposing a change to the Virtual I/O Device (VIRTIO) specification! | ||
The VIRTIO TC is not yet accepting pull requests at this time as they are not | ||
integrated with our voting system. | ||
# Thanks for proposing a change to the virtio-msg specification | ||
|
||
Instead, please | ||
- [] Propose the spec change (preferably as a patch) on the [mailing list](https://www.oasis-open.org/committees/tc_home.php?wg_abbrev=virtio#feedback). | ||
- [] Open an [issue](https://github.com/oasis-tcs/virtio-spec/issues), | ||
including the link to the proposal in the [mailing list archives](https://www.oasis-open.org/committees/tc_home.php?wg_abbrev=virtio#feedback). | ||
This is not the same as proposing a change to the VirtIO spec. This | ||
repository is intended for preparing the virtio-msg transport | ||
specification before it's submission to the VIRTIO TC. | ||
|
||
The TC will vote and apply the change. | ||
If your intention was to suggestion to change to the upstream please | ||
propose the change as a patch to the [mailing list](https://www.oasis-open.org/committees/tc_home.php?wg_abbrev=virtio#feedback). |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Deploy current state | ||
|
||
on: | ||
push: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install Tools | ||
run: | | ||
sudo apt install texlive-full | ||
- name: Build Docs | ||
run: | | ||
make local-all | ||
echo ${{ github.sha }} > Release.txt | ||
- name: Create a Draft Release | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
draft: true | ||
name: working-draft | ||
files: | | ||
Release.txt | ||
virtio-v1.4-wd01.pdf |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install Tools | ||
run: | | ||
sudo apt install texlive-full | ||
- name: Build HTML | ||
run: | | ||
make local-html |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# -*- Mode: makefile -*- | ||
# | ||
# Basic Makefile to aid automation of document building | ||
# | ||
|
||
.PHONY: all local | ||
all: | ||
./makeall.sh | ||
|
||
local-all: | ||
./makeall.sh local | ||
|
||
.PHONY: html local-html | ||
|
||
html: | ||
./makehtml.sh | ||
|
||
local-html: | ||
./makehtml.sh local | ||
|
||
.PHONY: clean | ||
clean: | ||
git clean -fd | ||
|
||
.PHONY: help | ||
help: | ||
@echo "Build the VIRTIO specification documents." | ||
@echo "" | ||
@echo "Possible operations are:" | ||
@echo | ||
@echo " $(MAKE) Build everything" | ||
@echo " $(MAKE) html Build local html" | ||
@echo " $(MAKE) clean Remove all intermediate files" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
virtio-v1.3-csd01 | ||
virtio-v1.4-wd01 |
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
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
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
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