forked from riscv/riscv-debug-spec
-
Notifications
You must be signed in to change notification settings - Fork 0
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 riscv#971 from riscv/merge_asciidoc
Convert to asciidoc
- Loading branch information
Showing
52 changed files
with
4,006 additions
and
10,545 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,13 +1,38 @@ | ||
name: Verify Build | ||
on: [push] | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- asciidoc | ||
|
||
jobs: | ||
Build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: sudo apt-get update | ||
- run: > | ||
sudo apt-get install python3-sympy texlive-latex-base \ | ||
texlive-latex-recommended texlive-latex-extra \ | ||
texlive-fonts-extra texlive-science | ||
- run: make draft stable release chisel | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
# Step 0: Install build requirements | ||
- name: Install Build Requirements | ||
run: sudo apt update && sudo apt install -y python3-sympy | ||
|
||
# Step 1: Checkout the repository | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: 'recursive' | ||
|
||
# Step 2: Pull the latest RISC-V Docs container image | ||
- name: Pull Container | ||
run: docker pull riscvintl/riscv-docs-base-container-image:latest | ||
|
||
# Step 3: Build Files | ||
- name: Build Files | ||
run: cd ./build && make | ||
|
||
# Step 4: Upload the built PDF files as a single artifact | ||
- name: Upload Build Artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: Build Artifacts | ||
path: ${{ github.workspace }}/build/*.pdf | ||
retention-days: 30 |
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,27 +1,7 @@ | ||
# LaTeX intermediate files | ||
*.aux | ||
*.idx | ||
*.ilg | ||
*.ind | ||
*.lof | ||
*.log | ||
*.out | ||
*.toc | ||
*.lot | ||
*.hst | ||
*.ver | ||
|
||
# Generated files | ||
*_registers.tex | ||
*_registers.tex.inc | ||
*_registers.h | ||
serial.* | ||
abstract_commands.* | ||
debug_defines.* | ||
|
||
# Changelogs | ||
changelog.tex | ||
vc.tex | ||
build/*.adoc | ||
build/images | ||
build/.asciidoctor | ||
build/*.pdf | ||
|
||
# Resulting PDFs | ||
riscv-debug-workgroup-notes.pdf | ||
.vscode |
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,3 @@ | ||
[submodule "docs-resources"] | ||
path = docs-resources | ||
url = https://github.com/riscv/docs-resources.git |
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
Oops, something went wrong.