Skip to content

feat: add resolved_arch tarball to deploy #757

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 20, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion lib/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ deploy_mkdir $DEPLOY_DIR/htmls

deploy_log "Resolve / Create Index for base architecture"
deploy_do "gen:resolved_arch"
tar czf $DEPLOY_DIR/resolved_arch.tar.gz gen/resolved_arch/_
deploy_cp_recursive gen/resolved_arch/_ $DEPLOY_DIR/resolved_arch

deploy_log "Create _site/isa_explorer"
Expand Down Expand Up @@ -169,7 +170,19 @@ cat <<- EOF > $DEPLOY_DIR/index.html
<br/>
<h3>Resolved architecture</h3>
<ul>
<li><a href="$PAGES_URL/resolved_arch/index.yaml">index.yaml</a> Database index, as array of relative paths from $PAGES_URL/resolved_arch</li>
<li>
<a href="$PAGES_URL/resolved_arch/index.yaml">index.yaml</a>
Database index, as array of relative paths from $PAGES_URL/resolved_arch
<ul>
<li>
For example, you can find <a href="$PAGES_URL/resolved_arch/ext/Sm.yaml">Sm.yaml</a> at $PAGES_URL/resolved_arch/ext/Sm.yaml
</li>
</ul>
</li>
<li>
<a href="$PAGES_URL/resolved_arch.tar.gz">resolved_arch.tar.gz</a>
The contents of the resolved architecture as a tarball
</li>
</ul>

<br/>
Expand Down
Loading