llhd 0.4.0

A Low Level Hardware Description that acts as a foundation for building hardware design tools.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash
# Copyright (c) 2017 Fabian Schuiki
# This script uploads the documentation in target/doc to the repo's
# GitHub pages. Requires the GH_TOKEN env var to be set.

set -e

COMMIT=`git rev-parse --short HEAD`
MSG="Documentation for llhd ($COMMIT)"

echo "<meta http-equiv=refresh content=0;url=llhd/index.html>" > target/doc/index.html

[ -d ghp-import ] || git clone https://github.com/davisp/ghp-import
ghp-import/ghp_import.py -n -m "$MSG" target/doc
git push -fq https://${GH_TOKEN}@github.com/fabianschuiki/llhd.git gh-pages