Merge pull request #96 from riscv-software-src/crd-james #36
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: Deploy pages | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
jobs: | |
pages: | |
runs-on: ubuntu-latest | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- name: Clone Github Repo Action | |
uses: actions/checkout@v4 | |
- name: Setup apptainer | |
uses: eWaterCycle/[email protected] | |
- name: Get container from cache | |
id: cache-sif | |
uses: actions/cache@v3 | |
with: | |
path: .singularity/image.sif | |
key: ${{ hashFiles('container.def', 'bin/.container-tag') }} | |
- name: Get gems and node files from cache | |
id: cache-bundle-npm | |
uses: actions/cache@v3 | |
with: | |
path: | | |
.home/.gems | |
node_modules | |
key: ${{ hashFiles('Gemfile.lock') }}-${{ hashFiles('package-lock.json') }} | |
- if: ${{ steps.cache-sif.outputs.cache-hit != 'true' }} | |
name: Build container | |
run: ./bin/build_container | |
- name: Setup project | |
run: ./bin/setup | |
- name: Build manual | |
run: ./do gen:html_manual MANUAL_NAME=isa VERSIONS=all | |
- name: Build html documentation for generic_rv64 | |
run: ./do gen:html[generic_rv64] | |
- name: Generate YARD docs | |
run: ./do gen:tool_doc | |
- name: Create _site/example_cfg | |
run: mkdir -p _site/example_cfg | |
- name: Create _site/manual | |
run: mkdir -p _site/manual | |
- name: Create _site/pdfs | |
run: mkdir -p _site/pdfs | |
- name: Create _site/htmls | |
run: mkdir -p _site/htmls | |
- name: Copy cfg html | |
run: cp -R gen/cfg_html_doc/generic_rv64/html _site/example_cfg | |
- name: Create RVA Family PDF Spec | |
run: ./do gen:profile_pdf[rva] | |
- name: Copy RVA Family PDF | |
run: cp gen/profile_doc/pdf/rva.pdf _site/pdfs/rva.pdf | |
- name: Create MC-1 PDF Spec | |
run: ./do gen:crd_pdf[MC-1] | |
- name: Copy MC-1 PDF | |
run: cp gen/crd_doc/pdf/MC-1.pdf _site/pdfs/MC-1.pdf | |
- name: Create MC-1 HTML Spec | |
run: ./do gen:crd_html[MC-1] | |
- name: Copy MC-1 HTML | |
run: cp gen/crd_doc/html/MC-1.html _site/htmls/MC-1.html | |
- name: Copy manual html | |
run: cp -R gen/manual/isa/top/all/html _site/manual | |
- name: Setup Pages | |
uses: actions/configure-pages@v5 | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: '_site' | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |