|
24 | 24 | uses: actions/checkout@v4
|
25 | 25 | - name: singularity setup
|
26 | 26 | uses: ./.github/actions/singularity-setup
|
27 |
| - - name: Create deploy dir |
| 27 | + - name: Create many artifacts in the _site directory |
28 | 28 | run: /bin/bash lib/deploy.sh
|
29 |
| - - name: Create _site/isa_explorer |
30 |
| - run: mkdir -p _site/isa_explorer |
31 |
| - - name: Create isa_explorer_browser |
32 |
| - run: ./do gen:isa_explorer_browser |
33 |
| - - name: Copy isa_explorer_browser |
34 |
| - run: cp -R gen/isa_explorer/browser _site/isa_explorer |
35 |
| - - name: Create isa_explorer_spreadsheet |
36 |
| - run: ./do gen:isa_explorer_spreadsheet |
37 |
| - - name: Copy isa_explorer_spreadsheet |
38 |
| - run: cp -R gen/isa_explorer/spreadsheet _site/isa_explorer |
39 |
| - - name: Build manual |
40 |
| - run: ./do gen:html_manual MANUAL_NAME=isa VERSIONS=all |
41 |
| - - name: Build html documentation for generic_rv64 |
42 |
| - run: ./do gen:html[generic_rv64] |
43 |
| - - name: Generate YARD docs |
44 |
| - run: ./do gen:tool_doc |
45 |
| - - name: Create _site/example_cfg |
46 |
| - run: mkdir -p _site/example_cfg |
47 |
| - - name: Create _site/manual |
48 |
| - run: mkdir -p _site/manual |
49 |
| - - name: Create _site/pdfs |
50 |
| - run: mkdir -p _site/pdfs |
51 |
| - - name: Create _site/htmls |
52 |
| - run: mkdir -p _site/htmls |
53 |
| - - name: Copy cfg html |
54 |
| - run: cp -R gen/cfg_html_doc/generic_rv64/html _site/example_cfg |
55 |
| - - name: Copy top-level index.html with links to portfolio artifacts |
56 |
| - run: cp index.html _site |
57 |
| - - name: Create RVI20 Profile Release PDF Spec |
58 |
| - run: ./do gen:profile_release_pdf[RVI20] |
59 |
| - - name: Copy RVI20 Profile Release PDF |
60 |
| - run: cp gen/profile/pdf/RVI20ProfileRelease.pdf _site/pdfs |
61 |
| - - name: Create RVA20 Profile Release PDF Spec |
62 |
| - run: ./do gen:profile_release_pdf[RVA20] |
63 |
| - - name: Copy RVA20 Profile Release PDF |
64 |
| - run: cp gen/profile/pdf/RVA20ProfileRelease.pdf _site/pdfs |
65 |
| - - name: Create RVA22 Profile Release PDF Spec |
66 |
| - run: ./do gen:profile_release_pdf[RVA22] |
67 |
| - - name: Copy RVA22 Profile Release PDF |
68 |
| - run: cp gen/profile/pdf/RVA22ProfileRelease.pdf _site/pdfs |
69 |
| - - name: Create RVA23 Profile Release PDF Spec |
70 |
| - run: ./do gen:profile_release_pdf[RVA23] |
71 |
| - - name: Copy RVA23 Profile Release PDF |
72 |
| - run: cp gen/profile/pdf/RVA23ProfileRelease.pdf _site/pdfs |
73 |
| - - name: Create RVB23 Profile Release PDF Spec |
74 |
| - run: ./do gen:profile_release_pdf[RVB23] |
75 |
| - - name: Copy RVB23 Profile Release PDF |
76 |
| - run: cp gen/profile/pdf/RVB23ProfileRelease.pdf _site/pdfs |
77 |
| - - name: Create AC100-CRD PDF Spec |
78 |
| - run: ./do gen:proc_crd_pdf[AC100] |
79 |
| - - name: Copy AC100-CRD PDF |
80 |
| - run: cp gen/proc_crd/pdf/AC100-CRD.pdf _site/pdfs |
81 |
| - - name: Create AC200-CRD PDF Spec |
82 |
| - run: ./do gen:proc_crd_pdf[AC200] |
83 |
| - - name: Copy AC200-CRD PDF |
84 |
| - run: cp gen/proc_crd/pdf/AC200-CRD.pdf _site/pdfs |
85 |
| - - name: Create MC100-32-CRD PDF Spec |
86 |
| - run: ./do gen:proc_crd_pdf[MC100-32] |
87 |
| - - name: Copy MC100-32-CRD PDF |
88 |
| - run: cp gen/proc_crd/pdf/MC100-32-CRD.pdf _site/pdfs |
89 |
| - - name: Create MC100-64-CRD PDF Spec |
90 |
| - run: ./do gen:proc_crd_pdf[MC100-64] |
91 |
| - - name: Copy MC100-64-CRD PDF |
92 |
| - run: cp gen/proc_crd/pdf/MC100-64-CRD.pdf _site/pdfs |
93 |
| - - name: Create MC200-32-CRD PDF Spec |
94 |
| - run: ./do gen:proc_crd_pdf[MC200-32] |
95 |
| - - name: Copy MC200-32-CRD PDF |
96 |
| - run: cp gen/proc_crd/pdf/MC200-32-CRD.pdf _site/pdfs |
97 |
| - - name: Create MC200-64-CRD PDF Spec |
98 |
| - run: ./do gen:proc_crd_pdf[MC200-64] |
99 |
| - - name: Copy MC200-64-CRD PDF |
100 |
| - run: cp gen/proc_crd/pdf/MC200-64-CRD.pdf _site/pdfs |
101 |
| - - name: Create MC300-32-CRD PDF Spec |
102 |
| - run: ./do gen:proc_crd_pdf[MC300-32] |
103 |
| - - name: Copy MC300-32-CRD PDF |
104 |
| - run: cp gen/proc_crd/pdf/MC300-32-CRD.pdf _site/pdfs |
105 |
| - - name: Create MC300-64-CRD PDF Spec |
106 |
| - run: ./do gen:proc_crd_pdf[MC300-64] |
107 |
| - - name: Copy MC300-64-CRD PDF |
108 |
| - run: cp gen/proc_crd/pdf/MC300-64-CRD.pdf _site/pdfs |
109 |
| - - name: Create MC100-32-CTP PDF Spec |
110 |
| - run: ./do gen:proc_ctp_pdf[MC100-32] |
111 |
| - - name: Copy MC100-32-CTP PDF |
112 |
| - run: cp gen/proc_ctp/pdf/MC100-32-CTP.pdf _site/pdfs |
113 |
| - - name: Create MockProcessor-CTP PDF Spec |
114 |
| - run: ./do gen:proc_ctp_pdf[MockProcessor] |
115 |
| - - name: Copy MockProcessor-CTP PDF |
116 |
| - run: cp gen/proc_ctp/pdf/MockProcessor-CTP.pdf _site/pdfs |
117 |
| - - name: Copy manual html |
118 |
| - run: cp -R gen/manual/isa/top/all/html _site/manual |
119 | 29 | - name: Setup Pages
|
120 | 30 | uses: actions/configure-pages@v5
|
121 | 31 | - name: Upload artifact
|
|
0 commit comments